Size
优质
小牛编辑
131浏览
2023-12-01
描述 (Description)
Size效果可以与effect()方法一起使用。 这会将元素的大小调整为指定的宽度和高度。
语法 (Syntax)
以下是使用此效果的简单语法 -
<i>selector</i>.effect( "size", {arguments}, speed );
参数 (Parameters)
以下是所有论点的描述 -
from - 国家开始,通常不需要。 这是{height:..,width:..}形式的对象
to - 要调整大小的高度和宽度。 这是{height:..,width:..}形式的对象
origin - 消失点,显示/隐藏的默认值。 这是一个数组,默认为['middle','center']。
scale - 元素的哪些区域将被调整大小:'both','box','content'框调整边框的大小和元素的填充内容调整元素内部的任何内容。 默认为“both”。
例子 (Example)
以下是一个简单的例子,简单地展示了这种效果的用法 -
<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() {
$("#big").click(function(){
$(".target").effect( "size", { to: {width: 200,height: 200} }, 1000 );
});
$("#small").click(function(){
$(".target").effect( "size", { to: {width: 10,height: 10} }, 1000 );
});
});
</script>
<style>
p {background-color:#bca; width:200px; border:1px solid green;}
div{ width:100px; height:100px; background:red;}
</style>
</head>
<body>
<p>Click any of the buttons</p>
<button id = "big"> Big </button>
<button id = "small"> Small </button>
<div class = "target">
</div>
</body>
</html>