悬停时更改图像不透明度
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了悬停时更改图像不透明度相关的知识,希望对你有一定的参考价值。
In scripts.js
$(function() { $('a img').css("opacity","1.0"); //set initial opacity $('a img').hover(function() { $(this).stop().animate({ opacity: 0.75 }, "fast"); //on mouse hover }, function() { $(this).stop().animate({ opacity: 1.0 }, "fast"); //on mouse out }); });
以上是关于悬停时更改图像不透明度的主要内容,如果未能解决你的问题,请参考以下文章