jQuery UI API - 尺寸特效(Size Effect)

所屬類別

特效(Effects)

用法

描述:調(diào)整元素尺寸到指定寬度和高度。

size

參數(shù) 類型 描述 默認(rèn)值
to Object 要調(diào)整到的高度和寬度。
origin Array 消失點(diǎn)。 [ "top", "left" ]
scale String 元素的哪個(gè)區(qū)域?qū)⒈徽{(diào)整尺寸:"both"、"box"、"content"。當(dāng)值為 "box" 時(shí),調(diào)整元素的邊框(border)和內(nèi)邊距(padding)的尺寸。當(dāng)值為 "content" 時(shí),調(diào)整元素內(nèi)的所有內(nèi)容的尺寸。 "both"

實(shí)例

使用尺寸特效(Size Effect)調(diào)整元素尺寸。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>尺寸特效(Size Effect)演示</title>
  <link rel="stylesheet"  rel="external nofollow" target="_blank" >
  <style>
  #toggle {
    width: 100px;
    height: 100px;
    background: #ccc;
  }
  </style>
  <script src="http://code.jquery.com/jquery-1.10.2.js" rel="external nofollow" ></script>
  <script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js" rel="external nofollow" ></script>
</head>
<body>
 
<p>點(diǎn)擊任意地方進(jìn)行尺寸調(diào)整。</p>
<div id="toggle"></div>
 
<script>
$( document ).click(function() {
  $( "#toggle" ).effect( "size", {
    to: { width: 200, height: 60 }
  }, 1000 );
});
</script>
 
</body>
</html>

查看演示