有反正阻止我的圖像閃爍,因爲他們重新加載?如何停止圖像閃爍,因爲他們改變了懸停
下面是我使用的交換圖像進行onmouseover
的代碼,但因爲之前它加載的新形象,它迅速閃爍,顯示div的背景色:
JS:
function chbg(img) {
document.getElementById('navholder').style.backgroundImage = 'url('+img+')';
}
HTML:
<a href="index.html"><div id="button1" onmouseover="chbg('http://placehold.it/300x250')" onmouseout="chbg('http://placehold.it/950x350')"><div id="triangle"></div><div id="buttonname">Home</div></div></a>
是的。 [預載你的圖片](http://stackoverflow.com/questions/8504764/preload-images)。 – Andy
啊輝煌,我認爲是這樣,但我不知道如何去做。我會檢查出 – man