jQuery在类中淡入淡出/设置图像动画

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery在类中淡入淡出/设置图像动画相关的知识,希望对你有一定的参考价值。

  1. $('.projectHolder').hover(
  2.  
  3. function() { //This is the hover in function
  4.  
  5. $("img", this).stop(); //Stops any animation being done on the button
  6.  
  7. $("img", this).css({opacity:1}); //Changes the opacity back to not if not already
  8.  
  9. $("img", this).animate({opacity:0.5},400); //Now animates the opacity to the user defined value
  10.  
  11. },
  12.  
  13. function() { //This is the hover out function
  14.  
  15. $("img", this).animate({opacity:1},400); //Animates the opacity back to 1
  16.  
  17. }
  18.  
  19. )

以上是关于jQuery在类中淡入淡出/设置图像动画的主要内容,如果未能解决你的问题,请参考以下文章

用 JQuery 慢慢改变/淡入淡出/动画改变图像

jQuery在悬停时更改(带有淡入淡出动画)div的背景图像

使用 jQuery 动画制作具有 200 毫秒交叉淡入淡出的 img 切换源?

jQuery不透明度/淡入淡出动画只能使用一次

使用jQuery连续淡入/淡出多个图像

如何从服务器下载图像并快速显示淡入淡出动画?