你好堆栈溢出
我正在浏览 jQuery 的一些教程,因为我想开始 2d 聊天。
我有一个代码应该使一些图像的不透明度为 50%,当鼠标悬停图像时为 100%,但它不起作用?图像为 50%,但不会更改为 100%。
我的代码:
$(function(){
$('#container img').animate({
"opacity" : .50
});
$('#container img').hover(function() {
$(this).animate({ "opactiy": 1 });
console.log("Den er nu 100% klar");
});
});