下面附上代码和效果图,应该是要用到CSS3。
<div class="Apply" ><div class="one" onmouseover="MM_over(this)" onmouseout="MM_out(this)"><div style="background-color:#fff;width: 170px;height: 180px;position: relative;top: 100px;margin: auto;"><img src="./images/hotel.png" style="max-width:90%"/ alt="求教,有这么一个效果,当把鼠标放上去二维码慢慢的出来,鼠标离开二维码慢慢的下去,怎么去实现。_html/css_WEB-ITnose" ><!-- 二维码 --><span style="font-size: 10px;width: 160px;margin-left: 45px;">扫描了解详情</span></div><div id="one1" style="background-color:black;width: 200px;height: 50px;margin-top:100px;position: absolute;border-radius: 0px 0px 20px 20px;"></div><span class="icon-ys01" style="top: 110px;width: 120px;font-size: 30px;margin-left: 85px;position: relative;"></span></div></div>
css3
你知道 还不去搜搜
如果你是用在手机上的话,你的交互设计是有问题的,手机上何来鼠标一说。
如果是在PC端,用jquery的animate方法就行,改变二维码的位置。
如果你是用在手机上的话,你的交互设计是有问题的,手机上何来鼠标一说。
如果是在PC端,用jquery的animate方法就行,改变二维码的位置。
$(document).ready(function() { $(".one").hover(function(){ $(".erweima").animate({top:"100px"}); });});
$(".one").hover(function(e){ e.type == "mouseleave", //是否是离开事件}
$(".one").mouseenter{}$(".one").mouseleave{}
$(".one").hover(function(e){ e.type == "mouseleave", //是否是离开事件}
$(".one").mouseenter{}$(".one").mouseleave{}