ホバー効果を達成しようとしています このコードを試しましたが、機能しません
$('.real').parent().on('mouseenter', function () {
var href = $(this).attr('href');
var top = $(this).next().css("bottom");
$(this).find('.real').next().css("display", "block").next().css({
'display': 'block',
'top': '30px'
});
}).on('mouseleave', function () {
var element = $(this).find('.real').next().css("display", "none");
element.next().css({
'display': 'none',
'top': '30px'
});
});
$('.SelectionAnimate').hover(function () {
$(this).css("display", "block");
$(this).next().show();
});
リストビュー コード
<div style="float: left; position: relative; margin: 10px;">
<div>
<a class="real" href='<%#"/ProfileTenModified/UserProfile/PhotoCross.aspx?in="+ Eval("Full_Image_Name") +"&mi=" + Eval("User_Id") +"&fd="+ Eval("Album")%>'>
<asp:Image ID="Image1" runat="server" ImageUrl='<%#"/ProfileTenModified/setP/"+ Eval("Slide_Thumb_Name") +".JPEG" %>'
BorderStyle="Solid" BorderWidth="1px" Width="172px" Height="172px" />
</a>
<asp:LinkButton CssClass="SelectionAnimate" ID="Selection" runat="server" Text="Set as Display"
OnCommand="ListViewThums_Selection_Command" CommandName="selection"></asp:LinkButton>
<asp:LinkButton CssClass="SelectionAnimate" ID="Deletion" runat="server" Text="Remove"
OnCommand="ListViewThumbs_Command"></asp:LinkButton>
</div>
<asp:HiddenField ID="HiddenFieldImageId" runat="server" Value='<%#Eval("Id") %>' />
</div>
使用するhover
と機能しますが、機能しませんmouseenter
..何が問題なのですか??