鱼C论坛

 找回密码
 立即注册
查看: 2458|回复: 1

[学习笔记] 鼠标滑动切换图片

[复制链接]
发表于 2020-2-24 16:34:14 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 wp231957 于 2020-2-24 19:32 编辑
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <title>演示鼠标滑动切换图像的页面</title>
        <script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"> </script>
        <style>
                .circle ul li
                                         {
                                                list-style:none;
                                                float:left;
                                                        width:40px;
                                                        height:40px;
                                                        background:orange;
                                                        margin-left:5px;
                                                        border-radius: 50%;
                                        
                                          }
                                          .circle ul
                                          {
                                                 overflow:hidden;
                                                         height:50px;
                                                         margin-top:20px;
                                                         margin-left:120px;
                                          }
                                          .circle
                                          {
                                                 position:absolute;
                                                         bottom:200px;
                                                         left:20%;
                                                         width:400px;
                                                         height:400px;
                                                         border:1px solid #000;
                                          }
                                          .circle ul li.current
                                          {
                                                 background:red;

                                          }
        </style>
</head>
<body>
     <div class="circle" id="circle">
            <img width=400px  height=400px id="img01" src="/pic/2111.png"></img>
        <ul>
            <li class="current"></li>
            <li></li>
            <li></li>
            <li></li>
                        <li></li>
        </ul>
    </div>
<script>
    imglist=["2111.png","2112.png","2113.png","2114.png","2115.png"];
    $("#circle ul li").mouseover(function()
    {
        $(this).hover(function()
        {
                    //console.log($(this).index());
            $(this).css('background', 'red');
                        $("#img01").attr('src',"/pic/"+imglist[$(this).index()]); 
        }, function()
        {
            $(this).css('background', 'orange');
        });
    });
</script>
</body>
</html>
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-2-24 19:34:49 | 显示全部楼层
示例图片
演示1.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 09:42

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表