Copyright © tutorialspoint.com
The Size effect can be used with effect() method. This resizes an element to a specified width and height.
Here is the simple syntax to use this effect:
selector.effect( "size", {arguments}, speed ); |
Here is the description of all the arguments:
from: State at beginning, usually not needed. This is an object in the form of { height: .., width: .. }
to: Height and width to resize to. This is an object in the form of { height: .., width: .. }
origin: The vanishing point, default for show/hide. This is an array and default is ['middle','center'].
scale:Which areas of the element will be resized: 'both', 'box', 'content' Box resizes the border and padding of the element Content resizes any content inside of the element. Default is "both"
Following is a simple example a simple showing the usage of this effect:
<html> <head> <title>the title</title> <script type="text/javascript" src="/jquery/jquery-1.3.2.min.js"></script> <script type="text/javascript" src="/jquery/jquery-ui-1.7.2.custom.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: 100,height: 100} }, 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> |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com