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.

demo

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

Popular posts from this blog

facebook - android ACTION_SEND to share with specific application only -

python - Creating a new virtualenv gives a permissions error -

javascript - cocos2d-js draw circle not instantly -