
介绍Animate.css
为了让我自己写的动画效果值得称赞,我用一个非常有名的开源的CSS3动画库,被形象的称为animate.css。 Dan Eden写的。
这是让我能专注于手头的任务,而不是解释CSS3动画的代码。
用Animate.css 需要2个步骤:
在html文档中引入animate.min.css。
在网页中要加动画的元素上添加animated yourchosenanimation类。
接下来你用Animate.css网站上的看到的关于动画的类名,代替yourchosenanimation。
引入Bootstrap轮播组件
Bootstrap轮播组件有三个主要的部分。
轮播指示显示幻灯的页面数量,给用户提供一个视觉线索,并提供可以滑动的导航。
轮播条目,一个叫.carousel-inner的类,包含在外边框的里边。代表每一个独立的滑块。每个图片里边的都可以放置图片。也可以添加标题。还可以在html元素上添加carousel-caption类名。Bootstrap会有自带的样式。我们可以通过这些元素添加动画。
最后,是轮播控制箭头,功能是可以使用户前后滑动。
如果想了解更多Bootstrap轮播组件的详情,可以查看Syed Fazle Rahman的用Bootstrap3创建js轮播效果这篇文章。
为了简单的展示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 () {
$this.removeClass($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
$myCarousel.on('slide.bs.carousel', function (e) {
// Select the elements to be animated inside the active slide
var $animatingElems = $(e.relatedTarget)
.find("[data-animation ^= 'animated']")
doAnimations($animatingElems)
})
上边的代码 我们来分析一下。
1、来看doAnimations()函数
这个doAnimations() 函数执行的任务如下。
它开始通过缓存变量中含有的animationend事件名称的字符串。这个事件告诉我们,你可能已经猜到,当每个动画结束。我们需要这个点的信息,因为每一次的动画结束后,我们将animate.css类移除。如果我们不做移除,轮播的标题将只有一次动画,也就是,只是在第一次轮播显示特定的幻灯片。
var animEndEv = 'webkitAnimationEnd animationend'
接来下,我们的函数循环遍历每一个我们想要有动画的元素,并获取data-animation的属性值。想上边所说的,这个值包含我们想要添加给元素的Animate.css类,以便有动画效果。
elems.each(function () {
var $this = $(this),
$animationType = $this.data('animation')
// etc...
})
最后,这个doAnimations() 函数动态添加animate.css类的每个要执行动画的元素上,当动画结束的时候,还附加了一个事件监听。动画结束后我们移除从Animate.css添加的类。这样确保下一个轮播灯片回到当前的区域。(你试着删除这段代码,看看会发生什么)
$this.addClass($animationType).one(animEndEv, function () {
$this.removeClass($animationType)
})
2、第一个标题的动画
当页面在浏览器中加载时,我们在第一个幻灯片中动画的内容:
var $firstAnimatingElems = $myCarousel.find('.item:first')
.find("[data-animation ^= 'animated']")
doAnimations($firstAnimatingElems)
在这个代码中,我们找到第一张灯片,我们希望通过使用data-animation从动画的标题获取动画属性的值。然后我们把变量 $firstAnimatingElems 当做参数传给doAnimations()函数,然后执行函数。
3、轮播的停止功能
当第一张灯片内容执行完动画以后,我们停止这个轮播功能。
$myCarousel.carousel('pause')
这是Bootstrap轮播组件防止不停旋转的特征。不停的旋转,可能会让访客生厌。
在这种情况下,我建议确保轮播不直接循环到下一个灯片直到所有的动画运行完毕。可以通过设置在初始化代码中的“间隔”选项来控制这个:
$myCarousel.carousel({
interval: 4000
})
在我看来,一个无限循环轮播标题跳跃每一次的滑动进入视线不理想。
4、轮播幻灯片标题的动画
为每张幻灯片的动画轮播标题变得可见需要以下描述的步骤。
首先,我们在slide.bs.carousel上添加一个事件监听器。
当幻灯片实例方法被调用时,该事件立即触发。
$myCarousel.on('slide.bs.carousel', function (e) {
// do stuff...
})
接下来,我们选择当前的灯片,找到我们希望增加动画的元素。下边的代码用了slide.bs.carousel事件的.relatedTarget属性来绑定动画。
var $animatingElems = $(e.relatedTarget).find("[data-animation ^= 'animated']")
最后,我们调用doAnimations()函数,把$animatingElems当做参数传进去。
doAnimations($animatingElems)
正如你们许多人可能知道,轮播有一些需要开发者考虑的问题。
什么是 Bootstrap?
Bootstrap 是Web 应用程序的前端框架。基于 HTML、CSS、JAVASCRIPT 。
Bootstrap由美国Twitter公司的设计师Mark Otto和Jacob Thornton合作开发的,基于HTML、CSS、JavaScript 的简洁、直观、强悍的前端开发框架,使得 Web 开发更加快捷。
Bootstrap提供了优雅的HTML和CSS规范,由动态CSS语言Less写成,一直是GitHub上的热门开源项目。
Bootstrap 是一个用于快速开发 Web 应用程序和网站的前端框架。在现在的 Web 开发中,有几个几乎所有的 Web 项目中都需要的组件。
Bootstrap版本功能发展
Bootstrap 与最新版的 Google Chrome、Firefox、Internet Explorer、Opera 和 Safari 浏览器兼容,尽管有些浏览器并不是支持所有 *** 作系统。
从 2.0 版本开始,Bootstrap 支持响应式网页设计(RWD)。页面布局可以根据显示网页的设备(桌面、平板电脑、手机)来进行动态调整。
3.0 版本开始,Bootstrap 将移动设备优先作为设计方针,更加强调了响应式设计。
4.0 alpha 版本添加 Sass 和 Flexbox 的支持。
Bootstrap特点
Bootstrap非常流行,得益于它非常实用的功能和特点。主要核心功能特点如下:
l跨设备、跨浏览器
可以兼容所有现代浏览器,包括比较诟病的IE7、8。当然,本课程不再考虑IE9以下浏览器。
l响应式布局
不但可以支持PC端的各种分辨率的显示,还支持移动端PAD、手机等屏幕的响应式切换显示。
l提供的全面的组件
Bootstrap提供了实用性很强的组件,包括:导航、标签、工具条、按钮等一系列组件,方便开发者调用。
l内置jQuery插件
Bootstrap提供了很多实用性的jquery插件,这些插件方便开发者实现Web中各种常规特效。
l支持HTML5、CSS3
HTML5语义化标签和CSS3属性,都得到很好的支持。
l支持LESS动态样式
LESS使用变量、嵌套、 *** 作混合编码,编写更快、更灵活的CSS。它和Bootstrap能很好的配合开发。
Bootstrap基本内容与组件
Bootstrap 包括 HTML、CSS 及 JavaScript 的框架,提供字体排印、窗体、按钮、导航及其他各种组件及 Javascript 扩展。主要包含内容有:
l 基本结构 : Bootstrap 提供了一个带有网格系统、链接样式、背景的基本结构。
l 全局CSS样式 : Bootstrap 自带以下特性:全局的 CSS设置、定义基本的 HTML 元素样式、可扩展的 class,以及一个先进的网格系统。
l 组件 : Bootstrap 包含了十几个可重用的组件,用于创建图像、下拉菜单、导航、警告框、d出框等等。
l JavaScript 插件 :Bootstrap包含了十几个自定义的jQuery 插件。您可以直接包含所有的插件,也可以逐个包含这些插件。
l 定制 :您可以定制Bootstrap的组件、LESS 变量和jQuery 插件来得到您自己的版本。
lBootstrap全局Css样式包括
Grid
Typography
Tables
Forms
Buttons
Responsiveness。
l还有大量其他有用的前端组件,比如:
Dropdowns
Navigation
Modals
Typehead
Pagination
Carousal
Breadcrumb
Tab
Thumbnails
Headers
Bootstrap资源
l参考资料
Bootstrap官网
http://getbootstrap.com
Bootstrap中文网
http://www.bootcss.com
网站使用案例
http://expo.bootcss.com/
Github
https://github.com/twbs/bootstrap
l教程
Bootstrap菜鸟教程
http://www.runoob.com/bootstrap/bootstrap-tutorial.html
Bootstrap on W3Schools
http://www.w3schools.com/bootstrap
慕课网视频教程
http://www.imooc.com/course/list?c=bootstrap
l模版
Bootstrap免费模版
http://startbootstrap.com
模糊效果后台模版
http://akveo.github.io/blur-admin/
后台模版
https://colorlib.com/polygon/gentelella/index.html
仪表盘
http://keen.github.io/dashboards/
l主题
Flat-ui
http://designmodo.com/flat-free/
各种配色主题
https://bootswatch.com/
基于bootstrap的主题框架
http://bootflat.github.io
l实用工具
实用代码片段
http://bootsnipp.com/ 提供一些有用的在线工具和代码片段
不好意思,最近一直很忙,没时间来知道玩,才看见资源有的呀~ 如果还需要的话,力口我的百度云直接分享给你
但是不能低于100分哦,毕竟我是只赚分党
觉得分数高的话可以向我要别的资源,有的话都给你~ n(*≧▽≦*)n
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)