jQuery实现滚动效果
程序员文章站
2022-04-09 21:27:37
本文实例为大家分享了jquery实现滚动效果展示的具体代码,供大家参考,具体内容如下
1. 图片轮播:
原理如下:
假设有三张图片,三张图片实际上都是存在于...
本文实例为大家分享了jquery实现滚动效果展示的具体代码,供大家参考,具体内容如下
1. 图片轮播:
原理如下:
假设有三张图片,三张图片实际上都是存在于页面上的,但是由于设置的可视部分的大小(这里主要考虑宽度)是小于等于一张图片的大小的,想要看到其他图片的话,最直接的想法就是将需要显示的图片放在可视区域,也就是说需要改变的是整个图片区域的偏移值(left/right)
具体实现:
<!doctype html> <html> <head> <meta charset="utf-8"> <title></title> <script type="text/javascript" src="jquery.min.js"></script> <link rel="stylesheet" type="text/css" href="./style.css" rel="external nofollow" > </head> <body> <div class="carousel"> <div class="con"> <!-- 轮播(carousel)项目 --> <div class="scroll"> <img src="./pic/1.jpg"> <img src="./pic/2.jpg"> <img src="./pic/3.jpg"> <img src="./pic/4.jpg"> <img src="./pic/5.jpg"> <img src="./pic/6.jpg"> <img src="./pic/7.jpg"> </div> <!-- 轮播(carousel)指标 --> <div class="but"> <span class="active"></span> <!-- 0 * img.width --> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> </div> </div> <!-- 轮播(carousel)导航 --> <a href="javascript:void(0)" class="prev" data-slide="prev"> << </a> <a href="javascript:void(0)" class="next" data-slide="next"> >> </a> </div> </body> </html>
$(function() { var _index = 0; var time = 0; $(".but span").click(function() { _index = $(this).index(); play(_index); }); function play(index) { $(".but span").eq(index).addclass('active').siblings('span').removeclass('active'); $('.scroll').animate({left: -(_index*1024)}, 500); } function autoplay() { time = setinterval(function() { _index++; if(_index > 6) { $('.scroll').css("left", 0); _index = 0; } play(_index); }, 3000); } autoplay(); $('.prev').click(function() { if(_index <= 0) { return; } clearinterval(time); play(--_index); autoplay(); }); $('.next').click(function() { if(_index >= 6) { return; } clearinterval(time); play(++_index); autoplay(); }); });
2. 上下滚动
这里以文字滚动为示例:就是利用定时器,在一定的时间间隔后不断的将ul中的最后一个li元素插入到ul的第一个li元素中
<!doctype html> <html> <head> <meta charset="utf-8"> <title></title> <script type="text/javascript" src="jquery.min.js"></script> <style type="text/css"> .ul-list li { text-decoration: none; list-style: none; } </style> </head> <body> <ul class="ul-list"> <li><a href="#">本地数据正反查询的实现例子</a></li> <li><a href="#">a-star寻路算法</a></li> <li><a href="#">node.js的querystring.stringify的使用</a></li> <li><a href="#">利用事件委托写一个简易扫雷游戏</a></li> <li><a href="#">懒加载(延迟加载)</a></li> <li><a href="#">js中xml的解析</a></li> </ul> <script type="text/javascript"> setinterval(function() { $('.ul-list li:last').css({'height':'0px', 'opacity':"0"}).insertbefore(".ul-list li:first").animate({'height':'25px', 'opacity': '1'}, 'slow', function() { $(this).removeattr('style'); }) }, 3000); </script> </body> </html>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇: 数据库通配符