博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jQuery 图片轮播的代码分离
阅读量:5092 次
发布时间:2019-06-13

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

以前遇到过jQuery实现列表自动滚动,这次的图片轮播在原理上与之相同,只有一些细微的差别,就是需要在图片的右下角显示当前图片的序号。
html代码,以及对应的css代码:
<
div 
id
="scrollPics"
>
    
<
ul 
class
="slider"
 
>
        
<
li
><
img 
src
="images/ads/1.gif"
/></
li
>
        
<
li
><
img 
src
="images/ads/2.gif"
/></
li
>
        
<
li
><
img 
src
="images/ads/3.gif"
/></
li
>
        
<
li
><
img 
src
="images/ads/4.gif"
/></
li
>
        
<
li
><
img 
src
="images/ads/5.gif"
/></
li
>
    
</
ul
>
    
<
ul 
class
="num"
 
>
        
<
li 
class
="on"
>1
</
li
>
        
<
li
>2
</
li
>
        
<
li
>3
</
li
>
        
<
li
>4
</
li
>
        
<
li
>5
</
li
>
    
</
ul
>
</
div
>
css代码:
#scrollPics
{
    height:
 150px;
    width
:
 100%;
    margin-bottom
:
 10px;
    overflow
:
 hidden;
    position
:
relative;
}
.num
{
    position
:
absolute;
    right
:
5px;
    bottom
:
5px;
}
#scrollPics .num li
{
    float
:
 left;
    color
:
 #FF7300;
    text-align
:
 center;
    line-height
:
 16px;
    width
:
 16px;
    height
:
 16px;
    cursor
:
 pointer;
    overflow
:
 hidden;
    margin
:
 3px 1px;
    border
:
 1px solid #FF7300;
    background-color
:
 #fff;
}
#scrollPics .num li.on
{
    color
:
 #fff;
    line-height
:
 21px;
    width
:
 21px;
    height
:
 21px;
    font-size
:
 16px;
    margin
:
 0 1px;
    border
:
 0;
    background-color
:
 #FF7300;
    font-weight
:
 bold;
}
用绝对定位设置列表 num 的位置,对 li 设置相关样式,on 表示显示图片对应的数字列表中 li 的样式类别。
js 代码:
//
滚动广告
    
var len = $(".num > li").length;
    
var index = 0;  
//
图片序号
    
var adTimer;
    $(".num li").mouseover(
function() {
        index = $(".num li").index(
this);  
//
获取鼠标悬浮 li 的index
        showImg(index);
    }).eq(0).mouseover();
    
//
滑入停止动画,滑出开始动画.
    $('#scrollPics').hover(
function() {
        clearInterval(adTimer);
    }, 
function() {
        adTimer = setInterval(
function() {
            showImg(index)
            index++;
            
if (index == len) {       
//
最后一张图片之后,转到第一张
                index = 0;
            }
        }, 3000);
    }).trigger("mouseleave");
    
function showImg(index) {
        
var adHeight = $("#scrollPics>ul>li:first").height();
        $(".slider").stop(
true
false).animate({
            "marginTop": -adHeight * index + "px"    
//
改变 marginTop 属性的值达到轮播的效果
        }, 1000);
        $(".num li").removeClass("on")
            .eq(index).addClass("on");
    }
posted on
2013-09-11 15:58 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/linuxnotes/p/3314763.html

你可能感兴趣的文章
Codeforces 1174E Ehab and the Expected GCD Problem
查看>>
Http协议对格式、请求头、方法
查看>>
关于WM_GETTEXT的应用
查看>>
out
查看>>
A New Gyratory Crusher Recommended to You Two
查看>>
FATAL ERROR: Could not find ./share/fill_help_tables.sql
查看>>
win10找回win7的windows照片查看器
查看>>
Nagios配置文件nagios.cfg详解
查看>>
Fail2ban
查看>>
WPF事件,路由事件
查看>>
深度学习资料
查看>>
SpringCloud 中使用 Ribbon(默认轮询规则 + 自定义规则)
查看>>
网站大全
查看>>
个人作业(二)
查看>>
加密解密:使用对称密码加密文件
查看>>
UITableViewCell不重用代码
查看>>
bean拆分
查看>>
10.03今日暂时停更博客
查看>>
gulp-API介绍
查看>>
CSS position属性---absolute与relative
查看>>