⾮常酷炫的Bootstrap图⽚轮播动画
对于⽹站开发者来说,对展⽰内容增加⼀个滑动或者是轮播效果的是⾮常常见的需求。收费和免费的轮播插件多的是不胜枚举。其中很多提供很多有⽤的配置选项和动态效果。
很多时候,如果你的项⽬需要的是⼀个轻量级的轮播,不需要很多的功能。同时你的项⽬是采⽤Bootstrap,(⼀个最流⾏的开源前端框架)的话。你可以参考⼀下bootstrap官⽅组件。
这篇⽂章将展⽰如何在 Bootstrap轮播上添加有趣的动画效果。同时确保这个js组件⾃由扩展和快速上⼿。
介绍Animate.css
为了让我⾃⼰写的动画效果值得称赞,我⽤⼀个⾮常有名的开源的CSS3动画库,被形象的称为animate.css。 Dan Eden写的。
这是让我能专注于⼿头的任务,⽽不是解释CSS3动画的代码。
⽤Animate.css 需要2个步骤:
1、在html⽂档中引⼊animate.min.css。
2、在⽹页中要加动画的元素上添加animated yourchosenanimation类。
接下来你⽤Animate.css⽹站上的看到的关于动画的类名,代替yourchosenanimation。
引⼊Bootstrap轮播组件
Bootstrap轮播组件有三个主要的部分。
---轮播指⽰显⽰幻灯的页⾯数量,给⽤户提供⼀个视觉线索,并提供可以滑动的导航。
---轮播条⽬,⼀个叫.carousel-inner的类,包含在外边框的⾥边。代表每⼀个独⽴的滑块。每个图⽚⾥边的都可以放置图⽚。也可以添加标题。还可以在html元素上添加carousel-caption类名。Bootstrap会有⾃带的样式。我们可以通过这些元素添加动画。
---最后,是轮播控制箭头,功能是可以使⽤户前后滑动。
为了简单的展⽰demo,就先不加图⽚了。焦点先放在轮播框架上作为动画。
构建HTML结构
下边是你需要引⽤到你项⽬当中的:
jQuery Bootstrap's CSS and JavaScript Animate.css ⼀个样式表和js⽂档。
为了加快开发进程,从Bootstrap官⽹引⽤了模板和必要的⽂件。
下边是Bootstrap轮播代码:
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active">
</li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<!-- First slide -->
<div class="item active">
<div class="carousel-caption">
<h3 data-animation="animated bounceInLeft">
This is the caption for slide 1
</h3>
<h3 data-animation="animated bounceInRight">
This is the caption for slide 1
</h3>
<button class="btn btn-primary btn-lg"
data-animation="animated zoomInUp">Button</button>
</div>
</div><!-- /.item -->
<!-- Second slide -->
<div class="item">
<div class="carousel-caption">
<h3 class="icon-container" data-animation="animated bounceInDown">
<span class="glyphicon glyphicon-heart"></span>
</h3>
<h3 data-animation="animated bounceInUp">
This is the caption for slide 2
</h3>
<button class="btn btn-primary btn-lg"
data-animation="animated zoomInRight">Button</button>
</div>
</div><!-- /.item -->
<!-- Third slide -->
<div class="item">
<div class="carousel-caption">
<h3 class="icon-container" data-animation="animated zoomInLeft">
<span class="glyphicon glyphicon-glass"></span>
</h3>
<h3 data-animation="animated flipInX">
This is the caption for slide 3
</h3>
<button class="btn btn-primary btn-lg"
data-animation="animated lightSpeedIn">Button</button>
</div>
</div><!-- /.item -->
</div><!-- /.carousel-inner -->
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic"
role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#carousel-example-generic"
role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div><!-- /.carousel -->
如果以上代码没有错,你在浏览器打开会看到⼀个可以运⾏的轮播,上边的⼀切不包含⼀⾏javascript代码。如果你不添加任何图像,
只是在css⽂档给.carousel .item这个类块添加min-height值防⽌轮播塌陷。
在轮播标题内的元素添加⼀个动画属性data-animation,⽤这个特别的动画类库作为他们的值。
如果你想从Animate.css库体验其他的动画,⽤你选择的动画类名代替data-animation属性值。
我们在javascript代码中⽤data-animation属性值。
虽然⼀个简单的⾃动轮播在⼀些案例中可以到,但是对于这个案例我们有更多的控制。
在这个⽅向的第⼀步,从元素中删除data-ride="carousel"值,把data-ride属性值初始化⼉不⽤写任何代码。但是,我们打算⽤js代码控制轮播,因此,这个data-ride属性就不必要了。
给轮播加CSS样式
现在根据⾃⼰的喜好,发挥创造⼒给轮播标题添加样式。我将要写的样式规则是能顺畅⼯作的demo。
更具体的说,我们增加动画延迟属性的控制。定义每个动画什么时候开始(注意为了简单演⽰,省略了浏览器前缀)
.carousel-caption h3:first-child {
animation-delay: 1s;
}
.carousel-caption h3:nth-child(2) {
animation-delay: 2s;
}
.carousel-caption button {
animation-delay: 3s;
}
上⾯的代码⽚段中确保元素动画有序开始。还可以做其他的效果。例如,你可以选择前两个标题同时出现。然后是button按钮。可以⾃⼰决定,享受乐趣吧。
写jQuery代码:
我们开始初始化这个轮播,在你的⾃定义的javascript ⽂件中添加⼀下代码:
var $myCarousel = $('#carousel-example-generic');
// Initialize carousel
$myCarousel.carousel();
我们已经动态的设置了轮播,接下来,我们来解决这个动画。
为了使第⼀个幻灯⽚的标题有动画,当页⾯在浏览器加载完后脚本得运⾏。随后的幻灯⽚在动画下进⼊到我们的视野,我们的代码在 slide.bs.carousel 事件上运⾏。意味着同样的代码运⾏两次:页⾯加载⼀次和slide.bs.carousel 事件⼀次。
因为我们喜欢遵循不重复的原则,我们打算把我们的代码封装在函数中,并在适当的时候引⽤。
代码:
function doAnimations(elems) {
var animEndEv = 'webkitAnimationEnd animationend';
elems.each(function () {
var $this = $(this),
$animationType = $this.data('animation');
// Add animate.css classes to
// the elements to be animated
// Remove animate.css classes
// once the animation event has ended
$this.addClass($animationType).one(animEndEv, function () {
$veClass($animationType);
});
});
}
/
/ Select the elements to be animated
// in the first slide on page load
var $firstAnimatingElems = $myCarousel.find('.item:first')
.find('[data-animation ^= "animated"]');
// Apply the animation using our function
doAnimations($firstAnimatingElems);
// Pause the carousel
$myCarousel.carousel('pause');
// Attach our doAnimations() function to the
// carousel's slide.bs.carousel event
$('slide.bs.carousel', function (e) {
/
javascript幻灯片
/ Select the elements to be animated inside the active slide
var $animatingElems = $(e.relatedTarget)
.find("[data-animation ^= 'animated']");
doAnimations($animatingElems);
});
上边的代码我们来分析⼀下。
来看doAnimations()函数
这个doAnimations() 函数执⾏的任务如下。
它开始通过缓存变量中含有的animationend事件名称的字符串。这个事件告诉我们,你可能已经猜到,当每个动画结束。我们需要这个点的信息,因为每⼀次的动画结束后,我们将animate.css类移除。如果我们不做移除,轮播的标题将只有⼀次动画,也就是,只是在第⼀次轮播显⽰特定的幻灯⽚。
var animEndEv = 'webkitAnimationEnd animationend';接来下,我们的函数循环遍历每⼀个我们想要有动画的元素,并获取data-animation的属性值。想上边所说的,这个值包含我们想要添加给元素的Animate.css类,以便有动画效果。
elems.each(function () {
var $this = $(this),
$animationType = $this.data('animation');
//
});
最后,这个doAnimations() 函数动态添加animate.css类的每个要执⾏动画的元素上,当动画结束的时候,还附加了⼀个事件监听。动画结束后我们移除从Animate.css添加的类。这样确保下⼀个轮播灯⽚回到当前的区域。(你试着删除这段代码,看看会发⽣什么)
$this.addClass($animationType).one(animEndEv, function () {
$veClass($animationType);
});
第⼀个标题的动画
当页⾯在浏览器中加载时,我们在第⼀个幻灯⽚中动画的内容:
var $firstAnimatingElems = $myCarousel.find('.item:first')
.find("[data-animation ^= 'animated']");
doAnimations($firstAnimatingElems);
在这个代码中,我们到第⼀张灯⽚,我们希望通过使⽤data-animation从动画的标题获取动画属性的值。然后我们把变量$firstAnimatingElems 当做参数传给doAnimations()函数,然后执⾏函数。
轮播的停⽌功能
当第⼀张灯⽚内容执⾏完动画以后,我们停⽌这个轮播功能。
$myCarousel.carousel('pause');这是Bootstrap轮播组件防⽌不停旋转的特征。不停的旋转,可能会让访客⽣厌。
在这种情况下,我建议确保轮播不直接循环到下⼀个灯⽚直到所有的动画运⾏完毕。可以通过设置在初始化代码中的“间隔”选项来控制这个:
$myCarousel.carousel({
interval: 4000
});
在我看来,⼀个⽆限循环轮播标题跳跃每⼀次的滑动进⼊视线不理想。
轮播幻灯⽚标题的动画
为每张幻灯⽚的动画轮播标题变得可见需要以下描述的步骤。
⾸先,我们在slide.bs.carousel上添加⼀个事件。
当幻灯⽚实例⽅法被调⽤时,该事件⽴即触发。
$('slide.bs.carousel', function (e) {
//
});
接下来,我们选择当前的灯⽚,到我们希望增加动画的元素。下边的代码⽤了slide.bs.carousel事件的.relatedTarget属性来绑定动画。
var $animatingElems = $(e.relatedTarget).find("[data-animation ^= 'animated']");最后,我们调⽤doAnimations()函数,把$animatingElems当做参数传进去。
doAnimations($animatingElems);
如果⼤家还想深⼊学习,可以点击进⾏学习,再为⼤家附两个精彩的专题:
精彩专题分享:
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。