I am trying to slide image left to right bottom of the corner.
I am using this code but 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>
you can use .animate() with max-height
DEMO