码迷,mamicode.com
首页 > 其他好文 > 详细

遍历输出图片加hover

时间:2017-05-22 17:46:41      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:for   att   icon   enter   color   no-repeat   url   pat   jpg   

1.

$(".icon a>div").hover(function () {
            var slls = $(this).attr("class");
            slls = slls.replace("hi", "");
            $(this).css({ "background": "url(<%=site.path.themepath %>images/hicon" + slls + "h.jpg) no-repeat center #fff" });

         }, function () {
             var slls = $(this).attr("class");
             slls = slls.replace("hi", "");
             $(this).css({ "background": "url(<%=site.path.themepath %>images/hicon" + slls + ".jpg) no-repeat center #fff" });
        });

2.

for (var i = 1; i < 6; i++) {
            $(".icon a:eq(" + (i - 1) + ")>div").css({ "background": "url(<%=site.path.themepath %>images/hicon" + i + ".jpg) no-repeat center #fff" });
        }
        var iconhover = new Array(1, 2, 3, 4, 5);
        for (var j = 0; j < 5; j++) {
            $(".icon a:eq(" +j+ ")>div").hover(function () {
                var slls = $(this).attr("class");
                slls = slls.replace("hi", "");
                $(this).css({ "background": "url(<%=site.path.themepath %>images/hicon" + slls + "h.jpg) no-repeat center #fff" });

            }, function () {
                var slls = $(this).attr("class");
                slls = slls.replace("hi", "");
                $(this).css({ "background": "url(<%=site.path.themepath %>images/hicon" + slls + ".jpg) no-repeat center #fff" });
            });
        
        
        }
    });
  

 技术分享

 

遍历输出图片加hover

标签:for   att   icon   enter   color   no-repeat   url   pat   jpg   

原文地址:http://www.cnblogs.com/LLMjiayou7/p/6890361.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!