shellymabelly83
08-04-2011, 07:20 PM
I have my smooth scrolling gallery set up and is working how I want to the MOST part. For some reason the hotspots are hidden and I cannot use them. I have no idea why they will not show up.
Here is the script code:
$(window).load(function() {
$("div#makeMeScrollable").smoothDivScroll({
autoScroll: "always" ,
autoScrollDirection: "backandforth",
autoScrollInterval: 35,
autoScrollStep: 5,
visibleHotSpots: "always",
});
$("div#makeMeScrollable").mouseleave(function(){
$("#makeMeScrollable").smoothDivScroll("startAutoScroll");
});
$("div.scrollableArea").mouseenter(function(){
$("#makeMeScrollable").smoothDivScroll("stopAutoScroll");
});
});
I also have a test page here:
www.mishedesign.com/janicec/test3.html
Here is the script code:
$(window).load(function() {
$("div#makeMeScrollable").smoothDivScroll({
autoScroll: "always" ,
autoScrollDirection: "backandforth",
autoScrollInterval: 35,
autoScrollStep: 5,
visibleHotSpots: "always",
});
$("div#makeMeScrollable").mouseleave(function(){
$("#makeMeScrollable").smoothDivScroll("startAutoScroll");
});
$("div.scrollableArea").mouseenter(function(){
$("#makeMeScrollable").smoothDivScroll("stopAutoScroll");
});
});
I also have a test page here:
www.mishedesign.com/janicec/test3.html