0
Im Working on this page:http://gpt.hernan.org/gpnew/v1%20(Referrals%20hover).html 當鼠標懸停在推薦按鈕上時,會出現一個背景覆蓋圖,我需要它逐漸顯示。也許有些淡入或淡出動畫。在鼠標上淡出背景覆蓋
我正在使用此腳本使覆蓋運行。
<script type="text/javascript">
(function(){
$('#coins').on('mouseenter', function(){
var w = $(window).width();
var h = $(window).height();
$('<div></div>').appendTo('body').
addClass('overlay').css({ 'width': w, 'height': h });
}).on('mouseleave', function(){
$('.overlay').remove();
})
})();
</script>