Here:
Code:
marqueeInit({
uniqueid: 'photos',
style: {
'padding': '2px',
'width': '100%',
'height': '310px'
},
inc: 2, //speed - pixel increment for each iteration of this marquee's movement
mouse: 'pavse', //mouseover behavior ('pause' 'cursor driven' or false)
moveatleast: 2,
neutral: 10,
savedirection: true,
random: true
});
There's a typo. It should be 'pause'. But that's the default, so you can delete that line. Also savedirection, moveatleast and neutral are only for cursor driven, and width 100% is default, so you can get rid of them as well. So you end up with:
Code:
marqueeInit({
uniqueid: 'photos',
style: {
'padding': '2px',
'height': '310px'
},
inc: 2, //speed - pixel increment for each iteration of this marquee's movement
random: true
});
Bookmarks