- jQuery - Home
- jQuery - Roadmap
- jQuery - Overview
- jQuery - Basics
- jQuery - Syntax
- jQuery - Selectors
- jQuery - Events
- jQuery - Attributes
- jQuery - AJAX
- jQuery CSS Manipulation
- jQuery - CSS Classes
- jQuery - Dimensions
- jQuery - CSS Properties
- jQuery Traversing
- jQuery - Traversing
- jQuery - Traversing Ancestors
- jQuery - Traversing Descendants
- jQuery References
- jQuery - Selectors
- jQuery - Events
- jQuery - Effects
- jQuery - HTML/CSS
- jQuery - Traversing
- jQuery - Miscellaneous
- jQuery - Properties
- jQuery - Utilities
- jQuery Plugins
- jQuery - Plugins
- jQuery - PagePiling.js
- jQuery - Flickerplate.js
- jQuery - Multiscroll.js
- jQuery - Slidebar.js
- jQuery - Rowgrid.js
- jQuery - Alertify.js
- jQuery - Progressbar.js
- jQuery - Slideshow.js
- jQuery - Drawsvg.js
- jQuery - Tagsort.js
- jQuery - LogosDistort.js
- jQuery - Filer.js
- jQuery - Whatsnearby.js
- jQuery - Checkout.js
- jQuery - Blockrain.js
- jQuery - Producttour.js
- jQuery - Megadropdown.js
- jQuery - Weather.js
jQuery Effect - Fold Effect
Description
The Fold effect can be used with show/hide/toggle. This folds the element like a piece of paper.
Syntax
Here is the simple syntax to use this effect −
selector.hide|show|toggle( "fold", {arguments}, speed );
Parameters
Here is the description of all the arguments −
horizFirst − Whether to fold horizontally first or not. Can be true or false. Default is false.
mode − The mode of the effect. Can be "show" or "hide". Default is hide.
size − Size to be folded to. Default is 15.
Example
Following is a simple example a simple showing the usage of this effect −
<html>
<head>
<title>The jQuery Example</title>
<script type = "text/javascript"
src = "https://www.tutorialspoint.com/jquery/jquery-3.6.0.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( "fold", {horizFirst: true }, 2000 );
});
$("#show").click(function(){
$(".target").show( "fold", {horizFirst: true}, 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>
This will produce following result −
jquery-effects.htm
Advertisements