jQuery UI API - Slide Effect
Category
Usage
Description: Slides an element out of the viewport.
Parameter | Type | Description | Default Value |
---|---|---|---|
direction | String | The direction of the effect. Possible values: "left", "right", "up", "down". | "both" |
distance | Number | The distance of the effect. Defaults to the element's height or width depending on the direction parameter. Can be set to any integer less than the element's width/height. | Element's outerWidth |
Example
Using the Slide Effect to toggle a div.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Slide 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( "slide" );
});
</script>
</body>
</html>