あなたの助けが必要です。私はすべてのチュートリアルを調べましたが、何が間違っているのか理解できません。青い正方形を50%の不透明度までフェードアウトさせたいです。私はすでにfadeToで試しましたが、どんな理由でもうまくいきませんでした。私は何をする必要がありますか。私の間違いはどこにありますか?どうもありがとう!
<script type="text/javascript" src="jquery-1.8.0.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#divA").mouseover(function(){$("#divB").fadeTo('slow', 0.5, function());
$("#divA").mouseout(function(){$("#divB").fadeTo('slow', 1, function());
});
</script>
<style type="text/css">
#divA { background:red; width:25px; height:25px; margin:50px }
#divB { background:blue; width:200px; height:200px }
</style>
</head>
<body>
Hover over the red square to fadeout the blue one to 50% opacity.<br>
The blue square fades back in when your cursor leaves the red one.
<div id="divA"></div>
<div id="divB"></div>
</body>
</html>