Scale 效果可以与show/hide/toggle一起使用。这会使元素缩小或增长一个百分比因子。
Scale - 语法
selector.hide|show|toggle( "scale", {arguments}, speed );
这是所有参数的描述-
direction - 方向。可以是"both","垂直(vertical)"或"horizontal"。默认值是两者。
from - 开始时的状态,通常不需要。这将是一个对象,并将以{height:..,width:..}的形式给出。
origin - 消失点。这是一个数组,默认情况下设置为['middle','center']。
百分比(percent) - 要缩放为数字的百分比。默认值为0/100。
比例(scale) - 元素的哪些区域将被调整大小:'both','box','content'Box调整元素的边框和填充的大小Content调整其内部内容的大小元素。默认值是两者。
Scale - 示例
以下是一个简单的示例,简单说明了此效果的用法-
<html> <head> <title>The jQuery Example</title> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"> </script> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js"> </script> <script type="text/javascript" language="javascript"> $(document).ready(function() { $("#hide").click(function(){ $(".target").hide( "scale", {percent: 200, direction: 'horizontal'}, 2000 ); }); $("#show").click(function(){ $(".target").show( "scale", {percent: 200, direction: 'vertical' }, 2000 ); }); }); </script> <style> p {background-color:#bca; width:200px; border:1px solid green;} div{ width:100px; height:100px; background:red;} </style> </head> <body> <p>Click on any of the buttons</p> <button id="hide"> Hide </button> <button id="show"> Show</button> <div class="target"> </div> </body> </html>
这将产生以下输出-
参考链接
https://www.learnfk.com/jquery/effect-scale.html
标签:jQuery,Scale,hide,show,无涯,width,scale,默认值 From: https://blog.51cto.com/u_14033984/6891236