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

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

hot3.png

css: 

* {

        margin: 0px;
        padding: 0px;
        font-size: 14px;
        }
        div.LunBo {
        position: relative;
        list-style-type: none;
        height: 170px;
        width: 490px;
        }
        div.LunBo ul li {
        position: absolute;
        height: 170px;
        width: 490px;
        left: 0px;
        top: 0px;
        display: none;
        }
        div.LunBo ul li.CurrentPic {
        display: block;
        }
        div.LunBo div.LunBoNum {
        position: absolute;
        left: 374px;
        bottom: 11px;
        width: 83px;
        text-align: right;
        background-color: #999;
        padding-left: 10px;
        }
        div.LunBo div.LunBoNum span {
        height: 20px;
        width: 15px;
        display: block;
        line-height: 20px;
        text-align: center;
        margin-top: 5px;
        margin-bottom: 5px;
        float: left;
        cursor: pointer;
        }
        div.LunBo div.LunBoNum span.CurrentNum {
        background-color: #3F6;
        }

html:

<html>

    <head>
        <meta charset="utf-8">
        <title>
            图片轮播演示
        </title>
        <link rel="stylesheet" type="text/css" href="css/1.css">
        <script type="text/javascript" src="jquery-1.9.1.min.js"></script>
    </head>
    <body>
        <div class="LunBo">
            <ul>
                <li class="CurrentPic">
                    <img src="images/1.jpg" width="490" height="170">
                </li>
                <li>
                    <img src="images/2.jpg" width="490" height="170">
                </li>
                <li>
                    <img src="images/3.jpg" width="490" height="170">
                </li>
                <li>
                    <img src="images/4.jpg" width="490" height="170">
                </li>
                <li>
                    <img src="images/5.jpg" width="490" height="170">
                </li>
            </ul>
            <div class="LunBoNum">
                <span class="CurrentNum">1</span> <span>2</span> <span>3</span> <span>4</span> <span>5</span>
            </div>
        </div>
        <script type="text/javascript" language="javascript">
        var PicTotal = 5;
        var CurrentIndex;
        var ToDisplayPicNumber = 0;
        $("div.LunBo div.LunBoNum span").click(DisplayPic);
        function DisplayPic() {
        // 当前页
        CurrentIndex = $(this).index();
        // 删除同级的类属性
        $(this).parent().children().removeClass("CurrentNum")
        // 为当前元素添加类
        $(this).addClass("CurrentNum");
        // 隐藏全部图片
        var Pic = $(this).parent().parent().children("ul");
        $(Pic).children().hide();
        // 显示指定图片
        $(Pic).children("li").eq(CurrentIndex).show();
        }
        function PicNumClick() {
        $("div.LunBo div.LunBoNum span").eq(ToDisplayPicNumber).trigger("click");
        ToDisplayPicNumber = (ToDisplayPicNumber + 1) % PicTotal;
        setTimeout("PicNumClick()",1000);
        }
        setTimeout("PicNumClick()",1000);
        </script>
    </body>
</html>

转载于:https://my.oschina.net/u/2274056/blog/373872

你可能感兴趣的文章
获得本机的IP,掩码和网关
查看>>
大数据之 ZooKeeper原理及其在Hadoop和HBase中的应用
查看>>
Delphi中将XML文件数据装入DataSet
查看>>
你刚才在淘宝上买了一件东西
查看>>
C#正则表达式整理备忘
查看>>
发布一个 Linux 下的 C++ 多线程库
查看>>
大数据分布式架构单点故障详解(Hdfs+Yarn+HBase+Spark+Storm)构建HA高可用架构
查看>>
通过Stetho在Chrome上调试Android App
查看>>
presto集群安装&整合hive|mysql|jdbc
查看>>
工行企业网银“您的数据签名有误请联系当地工行”解决办法
查看>>
关于namespace的一点点心得体会(2017年8月3日14:55:37)
查看>>
使用Markdown记录文字
查看>>
Linux TCP 链接状态
查看>>
类的属性、类的方法、类的内置方法
查看>>
Python序列类型
查看>>
再谈ThinkPHP
查看>>
Hibernate问题浅析
查看>>
出现访问apache资源直接下载php文件的解决办法-----yum 安装 php mysql
查看>>
七种Mysql表类型
查看>>
归并与归并排序
查看>>