因此,我正在创建一个“按钮”,其中包含多个图像,就像幻灯片一样,每当我将鼠标移动到它时,图像就会变为另一个图像。
但是,每当幻灯片显示图像发生变化时,MouseOver效果都会被移除到MouseOut状态,因为从技术上讲,鼠标不再出现在图像上。
我也试过对我的按钮有一个淡入淡出效果,但是我的大多数搜索都会导致使用悬停功能而不是MouseOver和MouseOut。
所以我想知道Hover在潜在能力方面是否优于MouseOver?
是否可以在悬停等情况下暂停幻灯片活动?我该怎么做呢?
这是我目前的代码:
function.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;
}
main.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>
答案 0 :(得分:0)
由于您使用的是jQuery,因此可以使用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();
从任何地方开始和停止滑块。