http://www.cheersmug.com/网站上 OUR MUGS 、 CUSTOMIZE MUGS 、 ABOUT US 文字的特效是怎样制作的?还有,最好这个也可以在 php 界面中实现效果。我学的不深,请教教我。
1条回答 默认 最新
Jerome_Song 2013-11-28 03:50关注使用jquery做的动画,绑定mouseenter和mouseout事件即可,你再调整一下样式就能得到那个效果了
<html> <head> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script> $(document).ready(function(){ $("#area").bind("mouseenter",function(){ var div=$("div"); div.animate({height:'200px',width:'200px'},"fast"); }); $("#area").bind("mouseout",function(){ var div=$("div"); div.animate({height:'180px',width:'180px'},"fast"); }); }); </script> </head> <body> <div id="area" style="background:#98bf21;height:180px;width:180px;position:absolute;text-align:center;vertical-align:middle-center"> <a href="/product_category.html" style="width:180px;height:180px;text-align:center">OUR MUGS</a> </div> </body> </html>本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报