iamthestreets wrote:I understand now, thanks. Is there a way to stop the scroll and only have the images scroll when you put your mouse on the left or right side?
I have edited the mod so it only scrolls on mouse-over.
Test this:
OPEN INDEX_BODY.HTML
FIND:
Code: Select all
<!-- IF S_CRAWL_IMG_O_N -->
<script type="text/javascript">
marqueeInit({
uniqueid: 'mycrawler',
style: {
'padding': '0px',
'width': '99%',
'margin': '0 auto'
},
inc: 4, //speed - pixel increment for each iteration of this marquee's movement
mouse: 'cursor driven', //mouseover behavior ('pause' 'cursor driven' or false)
moveatleast: 1,
neutral: 600, // neutral region in the middle in px
savedirection: false
});
</script>
<!-- ENDIF -->
REPLACE WITH
Code: Select all
<!-- IF S_CRAWL_IMG_O_N -->
<script type="text/javascript">
marqueeInit({
uniqueid: 'mycrawler',
style: {
'padding': '0px',
'width': '99%',
'margin': '0 auto'
},
inc: 15, //speed - pixel increment for each iteration of this marquee's movement
mouse: 'cursor driven', //mouseover behavior ('pause' 'cursor driven' or false)
moveatleast: 'paus',
neutral: 600, // neutral region in the middle in px
savedirection: false
});
</script>
<!-- ENDIF -->