Hi!
Anyone knows if there is something similar on codecanyon to the sticky side panel found here on the right side of every page http://www.mediasignage.com/ ?
I found this http://codecanyon.net/item/sticklr-sticky-side-panel-css3-jquery-plugin/302039 but i i want it to be more like the one from the above website. When the user hovers the mouse it slides out , and it has a few links and icons…
I want to use it for support services and add it to all my web pages.
Any advice?
Thx
Define a CSS style for the panel
sidepanel {
height: 250px; width: 25px; position: absolute; top: 150px; right: 0; border: 1px solid #CC00CC; overflow: hidden; }
Then use jQuery hover and animate methods:
$(document).ready(function() { $(”#sidepanel”).hover( function () { $(this).animate({width: ‘150px’}, 500); }, function () { $(this).animate({width: ‘25px’}, 500); } ); });
