サンプル サンプルテキスト ソース <img src="images/ririn.jpg" width="300" height="236" class="alpha" /> <p class="wink">サンプルテキスト</p> ソース img.wink { margin-bottom:10px; } p.wink { background-color:#CCC; width:50%; padding:5px; } ソース $(function(){ $(".wink").mouseover(function(){ $(this).css("opacity", "0.4"); $(this).css("filter", "alpha(opacity=40)"); $(this).fadeTo("slow", 1.0); }); });

