jQuery在类中淡入淡出/设置图像动画
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery在类中淡入淡出/设置图像动画相关的知识,希望对你有一定的参考价值。
$('.projectHolder').hover( function() { //This is the hover in function $("img", this).stop(); //Stops any animation being done on the button $("img", this).css({opacity:1}); //Changes the opacity back to not if not already $("img", this).animate({opacity:0.5},400); //Now animates the opacity to the user defined value }, function() { //This is the hover out function $("img", this).animate({opacity:1},400); //Animates the opacity back to 1 } )
以上是关于jQuery在类中淡入淡出/设置图像动画的主要内容,如果未能解决你的问题,请参考以下文章
jQuery在悬停时更改(带有淡入淡出动画)div的背景图像