为了账号安全,请及时绑定邮箱和手机立即绑定

jQuery代码 完美实现效果!

jQuery(document).ready(function() {
    var t = $(".dox li"),
        b = $(".dox div");
    var index = 0;
    var timer = null;
    // if (t.length != b.length) return;
    for (var i = 0; i < t.length; i++) {
        t[i].id = i;
        $(t[i]).mouseover(function() {
            var that = this;
            clearInterval(timer);
            timer = setTimeout(function() {
                for (var j = 0; j < b.length; j++) {
                    b.css("display", "none");
                    t.removeClass();
                };
                $(that).addClass('hover');
                $(b[that.id]).css("display", "block");
            }, 150);
            // console.log(this.id)
            index = this.id;

        });
        $(t[i]).mouseout(function() {
            // clearInterval(timer);
            timer = setInterval(function() {

                index++;
                if (index >= t.length) {
                    index = 0;
                }
                for (var j = 0; j < b.length; j++) {
                    b.css("display", "none");
                    t.removeClass();
                };
                $(t[index]).addClass('hover');
                $(b[index]).css("display", "block");
            }, 2000);
        });
    };
    // if (timer) {
    //     clearInterval(timer);
    //     timer = null;
    // }
    timer = setInterval(function() {
        index++;
        if (index >= t.length) {
            index = 0;
        }
        for (var j = 0; j < b.length; j++) {
            b.css("display", "none");
            t.removeClass();
        };
        $(t[index]).addClass('hover');
        $(b[index]).css("display", "block");
        console.log(index);
    }, 2000);
});

正在回答

3 回答

jqury相比js就是封装了些方法,简化了方法名字而已

0 回复 有任何疑惑可以回复我~

可以优化很多~

0 回复 有任何疑惑可以回复我~
#1

nc1199

。。。我是说还有很多地方可以优化~
2015-09-22 回复 有任何疑惑可以回复我~
jQuery(document).ready(function() {
    var t = $(".dox li"),
        b = $(".dox div");
    var index = 0;
    var timer = null;
    // if (t.length != b.length) return;
    for (var i = 0; i < t.length; i++) {
        t[i].id = i;
        $(t[i]).mouseover(function() {
            var that = this;
            clearInterval(timer);
            timer = setTimeout(function() {
                for (var j = 0; j < b.length; j++) {
                    b.css("display", "none");
                    t.removeClass();
                };
                $(that).addClass('hover');
                $(b[that.id]).css("display", "block");
            }, 150);
            // console.log(this.id)
            index = this.id;

        });
        $(t[i]).mouseout(function() {
            // clearInterval(timer);
            timer = setInterval(function() {

                index++;
                if (index >= t.length) {
                    index = 0;
                }
                for (var j = 0; j < b.length; j++) {
                    b.css("display", "none");
                    t.removeClass();
                };
                $(t[index]).addClass('hover');
                $(b[index]).css("display", "block");
            }, 2000);
        });
    };
    // if (timer) {
    //     clearInterval(timer);
    //     timer = null;
    // }
    timer = setInterval(function() {
        index++;
        if (index >= t.length) {
            index = 0;
        }
        for (var j = 0; j < b.length; j++) {
            b.css("display", "none");
            t.removeClass();
        };
        $(t[index]).addClass('hover');
        $(b[index]).css("display", "block");
        console.log(index);
    }, 2000);
});


1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

jQuery代码 完美实现效果!

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信