jquery图片效果(缩小放大)

jquery图片效果(缩小放大)

jquery图片效果(缩小放大)

 

<%@ Page Language= " C# " AutoEventWireup= " true " CodeFile= " testPic3.aspx.cs " Inherits= " testPic3 " %>

<!DOCTYPE html PUBLIC  " -//W3C//DTD XHTML 1.0 Transitional//EN "  " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">

<html xmlns= " http://www.w3.org/1999/xhtml " >
<head runat= " server ">
    <title>图片效果</title>
    <script type= " text/javascript " src= " js/jquery-1.3.2.min.js "></script>  
    <style type= " text/css "
        #tip   {position:absolute;color:# 333;display:none;}  
        #tip s   {position:absolute;top:40px;left:-20px;display:block;width:0px;height:0px;font-size:0px;line-height:0px;border-color:transparent #BBA transparent transparent;border-style:dashed solid dashed dashed;border-width:10px;}  
        #tip s i   {position:absolute;top:-10px;left:-8px;display:block;width:0px;height:0px;font-size:0px;line-height:0px;border-color:transparent #fff transparent transparent;border-style:dashed solid dashed dashed;border-width:10px;}  
        #tip .t_box   {position:relative;background-color:#CCC;filter:alpha(opacity= 50);-moz-opacity: 0.5;bottom:-3px;right:-3px;}  
        #tip .t_box div  {position:relative;background-color:#FFF;border:1px solid #ACA899;background:#FFF;padding:1px;top:-3px;left:-3px;}  
        .tip   {width:82px;height:82px;border:1px solid #DDD;}  
    </style>  

     <script type= " text/javascript ">  
     $(function(){  
        $( ' .tip ').mouseover(function(){  
            var $tip=$( ' <div id="tip"><div class="t_box"><div><s><i></i></s><img src=" '+ this.src+ ' " /></div></div></div> ');  
             // var $tip=$('<div id="tip"><div class="t_box"><div><s><i></i></s><asp:Image runat="server" ImageUrl="'+this.ImageUrl+'" /></div></div></div>');  
           $( ' body ').append($tip);  
           $( ' #tip ').show( ' fast ');  
        }).mouseout(function(){  
           $( ' #tip ').remove();  
        }).mousemove(function(e){  
           $( ' #tip ').css({ " top ":(e.pageY- 60)+ " px ", " left ":(e.pageX+ 30)+ " px "})  
        })  
     })  
     </script>  

</head>
<body>
    <form id= " form1 " runat= " server ">
    <div>
            <a href= " # "><img  class= " tip " src= " image/jingang2.jpg "  /></a>  
            <a href= " # "><img  class= " tip " src= " image/1.jpg " /></a>  
            <a href= " # " ><img  class= " tip " src= " image/2.GIF " /></a>  
            <a href= " # " ><asp:Image   ID= " Image1 " runat= " server " ImageUrl= " image/jingang2.jpg " CssClass= " tip " /></a> 
            <a href= " # " ><asp:Image   ID= " Image2 " runat= " server " ImageUrl= " image/1.jpg " CssClass= " tip " /></a>
    </div>
    </form>
</body>
</html>

 

 

jquery-1.3.2.min.js

 

你可能感兴趣的:(jquery)