私のプロジェクトでは、トグル機能が複数回トグルします。フェードインする絶対位置の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 つのティーザーのうち最初の 1 つが切り替わるはずですが、止まりません!
ご協力いただきありがとうございます!
よろしくお願いします