Show Image Hover Effect Using CSS Style
Cursor Move To Display Image Show Some Effects on MouseHover in Using CSS Style in Asp.Net.
Download Coding
Download
DEMO
HTML CODING
Cursor Move To Display Image Show Some Effects on MouseHover in Using CSS Style in Asp.Net.
Download Coding
Download
DEMO
HTML CODING
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Show Image Hover Effect Using CSS Style in Asp.Net </title>
<style>
.ShowEffect:hover
{
box-shadow: 0 0 95px yellow;
width: 250px;
height :250px;
-moz-box-shadow: 0 0 95px yellow;
-webkit-box-shadow: 0 0 95px yellow;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div align="center">
<br />
<br />
<div class="ShowEffect" >
<asp:Image ID="Image1" runat="server" ImageUrl="~/Koala.jpg" Height ="250px" Width="250px" />
</div></div>
</form>
</body>
</html>
0 comments:
Post a Comment