jquery - Website slide or whatever it's called -
i need simple horizontal slide website functions i've poorly drawn on image:enter image description here
so, when press little arrow page doesn't load up, changes it's on screen position...
just give me page examples, or put question right (because have no idea how such sliding called)
this commonly done jquery , css positioning.
css:
.rightslide { position: fixed; top: 0; left: 90%; }
and slide in:
$('.rightslide').animate({left: "10%"});
Comments
Post a Comment