0

所以我目前正在创建一个包含多个图像的“按钮”,就像幻灯片一样,每当我将鼠标悬停在它上面时,图像就会变成另一个图像。

但是,每当幻灯片图像发生变化时,MouseOver 效果就会被移除为 MouseOut 状态,因为从技术上讲,鼠标不再位于图像上。

我还尝试为我的按钮设置淡入淡出效果,但是我的大多数搜索导致使用悬停功能而不是 MouseOver 和 MouseOut。

所以我想知道 Hover 在潜在功能方面是否比 MouseOver 更好?

是否可以在悬停时暂停幻灯片事件等?我该怎么做呢?

这是我当前的代码:

函数.js

$(function () {

    $('#01 img:gt(0)').hide();
    setInterval(function () {
        $('#01 :first-child').fadeOut(1500)
           .next('img').fadeIn(1500)
           .end().appendTo('#01');
    },
      3000);
});

$(document).ready(function () {

    $("#image1").mouseover(function () {
        $(this).attr("src", "images/board_01_over.jpg");
    });

    $("#image1").mouseout(function () {
        $(this).attr("src", "images/board_01_01.jpg");
    });
});

main.css

    #board {
    float: left;
    width: 998px;
    overflow: hidden;
}


.fadein {

    float: left;
    position: relative;
    width: 240px;
    height: 140px;
    margin: 1px 1px 1px 1px;
}

    .fadein img {
        position: absolute;
        left: 0;
        top: 0;
        height: 140px;
        opacity: 0.6;
        overflow: hidden;
    }

        .fadein img:hover {
            opacity: 1;
        }

主.html

     <div id="board">
         <div class="fadein" id="01">
             <img src="images/board_01_01" id="image1" />

             <img src="images/board_01_02.jpg" id="image2" />
         </div>

     </div>
4

1 回答 1

0

由于您使用的是 jQuery,因此您可以使用该hover()功能。

http://api.jquery.com/hover

$("#image1").hover(function () {
    $(this).attr("src", "images/board_01_over.jpg");
},

function () {
    $(this).attr("src", "images/board_01_01.jpg");
});

对于您的滑块来说,用它制作一个小对象更容易,因此更容易控制。

var Slideshow = {
    interval:null,

    start: function () {
        ...
        initialize
        ...
        // catch the interval ID so you can stop it later on
        this.interval = window.setInterval(this.next, 3000);
    },

    next: function () {
        /*
         * You cannot refer to the keyword this in this function
         * since it gets executed outside the object's context.
         */
        ...
        your logic
        ...
    },

    stop: function () {
        window.clearInterval(this.interval);
    }
};

现在您可以轻松调用

Slideshow.start();
Slideshow.stop();

从任何地方开始和停止您的滑块。

于 2013-05-14T17:20:15.183 回答