jQuery UI加入效果

一、设计源代码css

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>加入效果</title>
<link rel="stylesheet" href="../js/jquery-ui-1.10.4/development-bundle/themes/base/jquery.ui.all.css">
<script src="../js/jquery-ui-1.10.4/development-bundle/jquery-1.10.2.js"></script>
<script src="../../js/jquery-ui-1.10.4/development-bundle/ui/jquery.ui.effect.js"></script>
<link rel="stylesheet" href="../js/jquery-ui-1.10.4/development-bundle/demos/demos.css">
<style>
   .effect{
      width: 500px;
      height: 300px;
      position: relative;
   }
   .effect-content{
      width: 200px;
      height: 100px;
      font-size: 40px;
      border: 1px solid #FF0000;
      color: #00FF00;
      padding: 10px;
   }
   .divClass{
      text-indent: 10px;
      letter-spacing: 20px;
      width: 300px;
      height: 200px;
      padding: 10px;
      font-size: 50px;
      font-weight: bolder;
   }
   #btn{
      width: 200px;
      height: 100px;
      font-size: 30px;
      cursor: pointer;
   }
</style>
<script>
   $(function(){
	   $("#btn").click(function(){
		   $(".effect-content").addClass("divClass",2000,callFunc);
		   
		   return false;
	   });
	   
	   var callFunc = function(){
		   setTimeout(function(){
			   $(".effect").removeClass("divClass");
		   },2000);
	   }
   });
</script>
</head>
<body>
   <div class="effect">
        <div class="effect-content ui-corner-all" >
             	上下左右
        </div>
   </div>
   <button id="btn" class="ui-state-default ui-corner-all">效果</button>
</body>
</html>

二、实现结果

(1)初始化html


(2)点击按钮后jquery