首页 > 代码库 > 两张图切换
两张图切换
<h2>两张图变换 无过度效果</h2> <img class="circle" src="images/1-1.jpg" border="0" onm ouseover="this.src=http://www.mamicode.com/‘images/1-2.jpg‘" onm ouseout="this.src=http://www.mamicode.com/‘images/1-1.jpg‘"/>
2.
<div class="inner"> <div style="background-image: url(‘images/ginoble2.png‘);"><img src="images/ginoble.png"/></div> </div>
$(‘.inner‘).hover(function () { $(this).find("img").stop().animate({ opacity: 0 }, ‘200‘); } ,function () { $(this).find("img").stop().animate({ opacity: 1 }, ‘200‘); } );
3.两张图切换position 过度时间
html
<h2>两张图变换position换 有时间过度</h2> <div id="pic"> <div class="bloc"></div> <div class="hid"></div> </div>
css
#pic{ width:230px; height:230px; position:relative; display:block; overflow:hidden; border-radius:50%; } .bloc{ position:absolute; left:0px; top:0px; display:block; background:url(images/2-1.jpg); width:230px; height:230px;border-radius:50%; z-index:2; } .hid{ position:absolute; left:-230px; top:230px; display:block; background:url(images/2-2.jpg); width:230px; height:230px; border-radius:50%; z-index:3;}
js
$("#pic").hover( function(){ $(this).find(‘.hid‘).animate({left:‘0px‘,top:‘0px‘,opacity:1},150) } , function(){ $(this).find(‘.hid‘).animate({left:‘-230px‘,top:‘230px‘,opacity:0},150) } )
两张图切换
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。