Easy Tutorial
❮ Api Accordion Api Scrollparent ❯

jQuery UI API - Scale Effect

Category

Effects

Usage

Description: Scale an element to a specified percentage.

Parameter Type Description Default Value
direction String The direction of the effect. Possible values: "both", "vertical", or "horizontal". "both"
origin Array The vanishing point. [ "middle", "center" ]
percent Number The percentage to scale to.
scale String Which area of the element will be resized: "both", "box", "content". When the value is "box", the element's border and padding are resized. When the value is "content", all content inside the element is resized. "both"

Examples

Toggle a div using the Scale Effect.

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Scale Effect Demo</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
  <style>
  #toggle {
    width: 100px;
    height: 100px;
    background: #ccc;
  }
  </style>
  <script src="//code.jquery.com/jquery-1.10.2.js"></script>
  <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
</head>
<body>

<p>Click anywhere to toggle.</p>
<div id="toggle"></div>

<script>
$( document ).click(function() {
  $( "#toggle" ).toggle( "scale" );
});
</script>

</body>
</html>

View Demo

Toggle a div using the Scale Effect in one direction.

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Scale Effect Demo</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
  <style>
  #toggle {
    width: 100px;
    height: 100px;
    background: #ccc;
  }
  </style>
  <script src="//code.jquery.com/jquery-1.10.2.js"></script>
  <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
</head>
<body>

<p>Click anywhere to toggle.</p>
<div id="toggle"></div>

<script>
$( document ).click(function() {
  $( "#toggle" ).toggle({ effect: "scale", direction: "horizontal" });
});
</script>

</body>
</html>

View Demo

❮ Api Accordion Api Scrollparent ❯