The Blind effect can be used with show/hide/toggle. This blinds the element away or shows it by blinding it in.
Here is the simple syntax to use this effect:
selector.hide|show|toggle( "blind", {arguments}, speed );
Here is the description of all the arguments:
direction: The direction of the effect. Can be "vertical" or "horizontal". Default is vertical.
mode: The mode of the effect. Can be "show" or "hide". Default is hide.
Following is a simple example a simple showing the usage of this effect:
<html> <head> <script type="text/javascript" src="../../js/jquery-2.2.0.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() { $("#hide").click(function(){ $(".target").hide( "blind", {direction: "horizontal"}, 1000 ); }); $("#show").click(function(){ $(".target").show( "blind", {direction: "horizontal"}, 1000 ); }); }); </script> <style> p { background-color:#bca; width:200px; border:1px solid green; } </style> </head> <body> <p>Click on any of the buttons</p> <button id="hide"> Hide </button> <button id="show"> Show</button> <div class="target"> <img src="../../images/jsquery.png" alt="jQuery" /> </div> </body> </html>
Your Query was successfully sent!