前端框架介绍
一:
Bootstrap基础入门推荐:
https://blog.csdn.net/valada/article/details/80892661
二:
1、轮播图:(slider-pro基于jquery)
https://github.com/bqworks/slider-pro/blob/master/docs/api.md#javascript-api
2、slick 是一个基于 jQuery 的响应触摸式幻灯片插件:
https://blog.csdn.net/cddcj/article/details/52172863
3、owl-carousel 幻灯片插件
https://github.com/OwlCarousel2/OwlCarousel2
参数说明中文文档:
https://www.jb51.net/article/135547.htm
三:
wow.js+animate.css:实现页面滚动时动态效果
使用步骤:
- wow.js依赖于animate.css,首先需要在
head
内引入animate.css或者animate.min.css。
<link rel="stylesheet" href="css/animate.css">
2.引入wow.js或者wow.min.js,然后js文件里再写一行代码。
<script src="js/wow.min.js"></script>
<script>
new WOW().init();
</script>
3.然后在块状元素内添加相应的class类名就能实现相应的动画啦
<div class="wow slideInLeft" data-wow-duration="2s" data-wow-delay="5s" data-wow-offset="10" data-wow-iteration="10"></div>
slideInLeft说明了动画的样式,是从左边滑动出来的
四个可选属性:
data-wow-duration(动画持续时间)
data-wow-delay(动画延迟时间)
data-wow-offset(元素的位置露出后距离底部多少像素执行)
data-wow-iteration(动画执行次数)
四:
fancyBox是一款优秀的弹出框Jquery插件(可播放视频及预览图片等)
官网:http://fancyapps.com/fancybox/3/
github:https://github.com/fancyapps/fancybox
五:
Modernizr 是一个 JavaScript 库,用于检测用户浏览器的 HTML5 与 CSS3 特性。
http://modernizr.cn/docs/#installing