我想引用圖像數組,每次用戶將鼠標懸停在數組中的圖像上時,圖像都會淡入。當用戶的鼠標離開時,圖像淡出圖片。操縱數組中的圖像以淡入淡出並通過Jquery懸停
我寫的代碼如下,但它似乎不工作。請幫助
var imagearray=[document.getElementById("one"),document.getElementById("two"),document.getElementById("three")]
$.each(imagrarray,function(){
$.hover(function(){ $.fadeIn("slow");},function(){ $.fadeOut();
}); });
下面的html:
<div id="faces" style=" overflow-y:hidden; height:120px; display:inline-block; left: 20px ; position:relative; opacity:0.5" >
<div id="base" class="hidden" >
<li class=set1" style="display:inline;">
<img id="one" style="float:left" src="attachments/36508133/one.png?api=v2" height="100"width="52" />
<img id="two" style="float:left" src="attachments/36508133/two.png?api=v2" height="100"width="52"/>
<img id="three" style="float:left" src="attachments/36508133/three.png?api=v2" height="100" width="52"/>
</li></div></div>
的不透明度,如果你淡出圖像,你可以分享的HTML以及 –
,那麼你將如何再次徘徊 –
嗯..每當我將鼠標移動到圖像上時,它會消失,當我移出時,它會消失 – user3121688