在我的项目中,切换功能会切换多次。我认为这是因为绝对定位的 div 应该淡入淡出。我解决不了那个...
这里是 jQuery 代码:
var $j = jQuery.noConflict();
$j(document).ready(function(){
$j('.grit_1_3_1').hover(
function(){$j('.grit_1_3_1_hover').fadeIn()},
function(){$j('.grit_1_3_1_hover').fadeOut()}
);
});
这里是 div 的 css:
.grit_1_3_1 {
color: #ffffff;
width: 33%;
float: left;
background: #bdbdbd;
vertical-align: center;
text-align: center;
height: 296px;
margin-bottom: 30px;
}
.grit_1_3_1_hover {
color: #ffffff;
position: absolute;
width: 296px;
display: none;
float: left;
background: #bdbdbd;
vertical-align: center;
text-align: center;
height: 296px;
margin-bottom: 30px;
}
3 个预告片中的第一个应该切换,但不会停止!
谢谢你的帮助!
最好的祝福