jQuery大气图标选项卡切换特效插件

jQuery大气图标选项卡切换特效插件-精品资源网
jQuery大气图标选项卡切换特效插件
此内容为免费资源,请登录后查看
0
免费资源

jQuery大气图标选项卡切换特效插件

jQuery大气图标选项卡切换特效插件是一款jQuery Tab选项卡代码。

js代码

<script type=\"text/javascript\">
$(function(){
    var tabNum=$(\".important\").find(\"li\");
    var contentNum=$(\".contents\").children();
    var timer;
    $(tabNum).each(function(index){
        $(this).hover(function(){
            var that=$(this)
             timer=window.setTimeout(function(){
                $(contentNum).eq(index).css({\"display\":\"block\"});
                $(contentNum).eq(index).siblings().css({\"display\":\"none\"});
                 that.find(\"a\").css({\"background\":\"#FFF\",\"color\":\"#fff\"});
                 that.find(\"strong\").show();
                 that.siblings().find(\"strong\").hide();
                 that.siblings().find(\"a\").css({\"background\":\"#fff\",\"color\":\"black\"});
            },100)
        },function(){
            window.clearTimeout(timer);
        })
    })
})
</script>

© 版权声明
THE END
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容