<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>支持响应式手机端jQuery图片轮播插件unslider </title>
<script src="jquery-1.11.1.min.js"></script>
<script src="unslider.min.js"></script>
<style>
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; }
</style>
</head>
<body>
<h1>jQuery unslider.js 使用演示</h1>
<span>本插件可配合jquery.event.swipe.js来实现触摸响应,具体请参见jquery.event.swipe.js的使用说明。</span>
<hr>
<!-- example_01 begin -->
<h2>示例 1</h2>
<span>最简单的使用,写好 ul 后调用 'unsliser()' 方法即可。</span>
<style>
#b01 ul li { height: 100px;}
</style>
<div class="banner" id="b01">
<ul>
<li>This is a slide.</li>
<li>This is another slide.</li>
<li>This is a final slide.</li>
</ul>
</div>
<script>
$(document).ready(function(e) {
$('#b01').unslider();
});
</script>
<!-- example_01 end -->
<hr>
<!-- example_02 begin -->
<h2>示例 2</h2>
<span>使用固定大小的图片,并限制容器大小</span>
<style>
#b02 { width: 640px;}
</style>
<div class="banner" id="b02">
<ul>
<li><img src="01.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
<li><img src="02.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
<li><img src="03.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
<li><img src="04.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
<li><img src="05.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
</ul>
</div>
<script>
$(document).ready(function(e) {
$('#b02').unslider();
});
</script>
<!-- example_02 end -->
<hr>
<!-- example_03 begin -->
<h2>示例 3</h2>
<span>在上一步的基础上,加上圆点(指示器)。这里使用 CSS3 来添加,若要兼容 IE8 及以下,请使用图片背景添加。</span>
<style>
#b03 { width: 640px;}
#b03 .dots { position: absolute; left: 0; right: 0; bottom: 20px;}
#b03 .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;
}
#b03 .dots li.active
{
background: #fff;
opacity: 1;
}
</style>
<div class="banner" id="b03">
<ul>
<li><img src="01.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
<li><img src="02.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
<li><img src="03.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
<li><img src="04.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
<li><img src="05.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
</ul>
</div>
<script>
$(document).ready(function(e) {
$('#b03').unslider({
dots: true
});
});
</script>
<!-- example_03 end -->
<hr>
<!-- example_04 begin -->
<h2>示例 4</h2>
<span>在上一步基础上,加上左右箭头。</span>
<style>
#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;}
</style>
<div class="banner" id="b04">
<ul>
<li><img src="01.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
<li><img src="02.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
<li><img src="03.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
<li><img src="04.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
<li><img src="05.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
</ul>
<a href="javascript:void(0);" class="unslider-arrow04 prev"><img class="arrow" id="al" src="arrowl.png" alt="prev" width="20" height="35"></a>
<a href="javascript:void(0);" class="unslider-arrow04 next"><img class="arrow" id="ar" src="arrowr.png" alt="next" width="20" height="37"></a>
</div>
<script>
$(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]();
});
});
</script>
<!-- example_04 end -->
<!-- example_05 begin -->
<h2>示例 5</h2>
<span>对轮播状态进行操作。</span>
<style>
#b05 { width: 640px;}
#b05 .dots { position: absolute; left: 0; right: 0; bottom: 20px;}
#b05 .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;
}
#b05 .dots li.active
{
background: #fff;
opacity: 1;
}
#b05 .arrow { position: absolute; top: 200px;}
#b05 #al { left: 15px;}
#b05 #ar { right: 15px;}
</style>
<div class="banner" id="b05">
<ul>
<li><img src="01.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
<li><img src="02.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
<li><img src="03.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
<li><img src="04.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
<li><img src="05.jpg" alt="unslider.js 使用演示" width="640" height="480" ></li>
</ul>
<a href="javascript:void(0);" class="unslider-arrow05 prev"><img class="arrow" id="al" src="arrowl.png" alt="prev" width="20" height="35"></a>
<a href="javascript:void(0);" class="unslider-arrow05 next"><img class="arrow" id="ar" src="arrowr.png" alt="next" width="20" height="37"></a>
</div>
<button id="stop">停止</button>
<button id="start">开始</button>
<button id="move">转到第二张(可有回调函数)</button>
<script>
$(document).ready(function(e) {
var unslider05 = $('#b05').unslider({
dots: true
}),
data05 = unslider05.data('unslider');
$('.unslider-arrow05').click(function() {
var fn = this.className.split(' ')[1];
data05('unslider')[fn]();
});
$("#stop").click(function() {
data05.stop();
});
$("#start").click(function() {
data05.start();
});
$("#move").click(function() {
data05.move(1, function() {});
});
});
</script>
<!-- example_04 end -->
<hr>
<!-- example_06 begin -->
<h2>示例 6</h2>
<span>调整为响应式</span>
<style>
#b06 { width: 640px;}
#b06 .dots { position: absolute; left: 0; right: 0; bottom: 20px;}
#b06 .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;
trans
没有合适的资源?快使用搜索试试~ 我知道了~
支持响应式手机端jQuery图片轮播插件unslider
共11个文件
jpg:5个
png:3个
js:2个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
5星 · 超过95%的资源 1 下载量 56 浏览量
2022-04-26
21:38:26
上传
评论
收藏 1.27MB ZIP 举报
温馨提示
支持响应式手机端jQuery图片轮播插件unslider,非常强大的jQuery插件,支持响应式手机端、支持函数回调、支持左右按钮切换,可以自定义是否使用响应式fluid:true/false、是否显示圆点切换dots:true/false,是否支持键盘切换keys:true/false,使用也非常的简单。
资源推荐
资源详情
资源评论
收起资源包目录
支持响应式手机端jQuery图片轮播插件unslider.zip (11个子文件)
01.jpg 84KB
05.jpg 205KB
04.jpg 53KB
arrowr.png 1KB
jquery-1.11.1.min.js 94KB
index.html 11KB
arrowl.png 1KB
1-150204101634510.png 255KB
unslider.min.js 3KB
03.jpg 323KB
02.jpg 355KB
共 11 条
- 1
资源评论
- 嘟噜嘟噜202022-05-22用户下载后在一定时间内未进行评价,系统默认好评。
reg183
- 粉丝: 1840
- 资源: 1万+
下载权益
C知道特权
VIP文章
课程特权
开通VIP
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功