博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
轮播插件unslider.min.js使用demo
阅读量:4965 次
发布时间:2019-06-12

本文共 2653 字,大约阅读时间需要 8 分钟。

有两种应用方式:

1、轮播图片作为<img>标签使用

HTML代码:

            

示例

CSS代码:

html,body {
font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;}ul,ol {
padding: 0;}.banner {
position: relative; overflow: auto; text-align: center;}.banner li {
list-style: none;}.banner ul li {
float: left;}#b04 {
width: 640px; }#b04 .dots {
position: absolute; left: 0; right: 0; bottom: 20px;}#b04 .dots li {
display: inline-block; width: 10px; height: 10px; margin: 0 4px; text-indent: -999em; border: 2px solid #fff; border-radius: 6px; cursor: pointer; opacity: .4; -webkit-transition: background .5s, opacity .5s; -moz-transition: background .5s, opacity .5s; transition: background .5s, opacity .5s;}#b04 .dots li.active {
background: #fff; opacity: 1;}#b04 .arrow {
position: absolute; top: 200px;}#b04 #al {
left: 15px;}#b04 #ar {
right: 15px;}

JS代码:

$(document).ready(function (e) {      var unslider04 = $('#b04').unslider({            dots: true      }),      data04 = unslider04.data('unslider');    $('.unslider-arrow04').click(function () {        var fn = this.className.split(' ')[1];        data04[fn]();      });});

效果图:

2、轮播图片作为<li>标签背景图片使用

HMTL代码:

            

示例

CSS代码:在上面CSS的基础上添加以下代码

.index_pic1{
width: 640px; height: 480px; margin: 0 auto; overflow: hidden; background: url(images/01.jpg) no-repeat;}.index_pic2{
width: 640px; height: 480px; margin: 0 auto; overflow: hidden; background: url(images/02.jpg) no-repeat;}.index_pic3{
width: 640px; height: 480px; margin: 0 auto; overflow: hidden; background: url(images/03.jpg) no-repeat;}.index_pic4{
width: 640px; height: 480px; margin: 0 auto; overflow: hidden; background: url(images/04.jpg) no-repeat;}.index_pic5{
width: 640px; height: 480px; margin: 0 auto; overflow: hidden; background: url(images/05.jpg) no-repeat;}

JS代码:与上面的JS代码一致

效果图:

 

总结:

轮播图片作为img标签时,在显示区域大小固定的情况下适用;在轮播图片需要跟随可视窗口大小自适应的情况下,作为li标签背景更妥当

转载于:https://www.cnblogs.com/dreamsqin/p/7020306.html

你可能感兴趣的文章
【LeetCode & 剑指offer刷题】查找与排序题6:33. Search in Rotated Sorted Array(系列)
查看>>
GNU/Linux超级本ZaReason Ultralap 440体验
查看>>
将github上托管的代码 在我的域名下运行
查看>>
【Manthan, Codefest 18 (rated, Div. 1 + Div. 2) C】Equalize
查看>>
【codeforces 767A】Snacktower
查看>>
【MemSQL Start[c]UP 3.0 - Round 1 C】 Pie Rules
查看>>
Ognl中“%”、“#”、“$”详解
查看>>
我对应用软件——美团的看法
查看>>
执行了的程序,才是你的程序.
查看>>
struts2.x + Tiles2.x读取多个xml 配置文件
查看>>
表单校验之datatype
查看>>
python第六篇文件处理类型
查看>>
hdu 3183 A Magic Lamp 贪心
查看>>
ubuntu16系统磁盘空间/dev/vda1占用满的问题
查看>>
面试题14 调整数组顺序使奇数位于偶数前面
查看>>
grid网格布局
查看>>
flask简单的注册功能
查看>>
JSP常用标签
查看>>
dashucoding记录2019.6.7
查看>>
IOS FMDB
查看>>