http://www.cheersmug.com/网站上文字的特效是怎样制作的?

http://www.cheersmug.com/网站上 OUR MUGSCUSTOMIZE MUGSABOUT US 文字的特效是怎样制作的?还有,最好这个也可以在 php 界面中实现效果。我学的不深,请教教我。

使用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>