image slide left to right bottom of the corner jquery -
i trying slide image left right bottom of corner.
i using code js not supported (direction ) paramerer..
<script type="text/javascript"> $(window).load(function () { $("#man").show("slide", { direction: "down" }, 2000); }); </script> <style type="text/css"> #man { display: none; position: fixed; bottom: 0px; right: 0px; } </style>
the slidetoggle method pretty easily.
html
<div id="man"></div>
jquery
$(function(){ $("#man").slidetoggle(500); });
css
#man { display: none; position: fixed; bottom: 0px; right: 0px; width: 200px; height: 400px; background: grey; }
Comments
Post a Comment