php? Posted December 24, 2007 Share Posted December 24, 2007 Alrighty, So obviously this is a marquee and when you scroll over it, it stops. When you scroll up on it, it fast forward... my problem is... How can i make it so that when you scroll down it goes in reverse? <marquee height="350" width="600" onmouseover="this.stop()" onmouseout="this.start()" direction="up" scrollamount="2"><font size="2"><strong> Look at mine: http://blitz.atwebpages.com/ Quote Link to comment Share on other sites More sharing options...
phpQuestioner Posted December 24, 2007 Share Posted December 24, 2007 not sure what you mean - change direction to "down" (that is the reverse of "up") Quote Link to comment Share on other sites More sharing options...
php? Posted December 26, 2007 Author Share Posted December 26, 2007 No... i want it so that when you scroll up... it fast forwards... and when you scroll down it reverses. Quote Link to comment Share on other sites More sharing options...
phpQuestioner Posted December 26, 2007 Share Posted December 26, 2007 when you scroll what up/down - the entire page? Quote Link to comment Share on other sites More sharing options...
Daniel0 Posted December 26, 2007 Share Posted December 26, 2007 Just don't use a marquee. :-\ I like my text staying where it is. It's much easier to read it that way. I'm sure most other people agree. Quote Link to comment Share on other sites More sharing options...
php? Posted December 27, 2007 Author Share Posted December 27, 2007 I'd rather use marquee ... and only a section of the page "scrolls", btw that has nothing to do with my problem.. Quote Link to comment Share on other sites More sharing options...
php? Posted December 29, 2007 Author Share Posted December 29, 2007 I'm currently trying to host my site to show you guys Quote Link to comment Share on other sites More sharing options...
phpQuestioner Posted December 29, 2007 Share Posted December 29, 2007 I'm currently trying to host my site to show you guys Yeah - I would need to see some code or a working example; to see what you are trying to do. Quote Link to comment Share on other sites More sharing options...
php? Posted December 29, 2007 Author Share Posted December 29, 2007 Alright here it is ... http://blitz.atwebpages.com/ Quote Link to comment Share on other sites More sharing options...
phpQuestioner Posted December 29, 2007 Share Posted December 29, 2007 ok - I am still trying to understand what you want - You want it so that if the document/body/web page is scrolled up; the marquee goes upward faster and if you scroll the document/body/web page down; the marquee goes upward slower or at the normal rate? Quote Link to comment Share on other sites More sharing options...
php? Posted December 30, 2007 Author Share Posted December 30, 2007 If you scroll the marquee down... i want the marquee to rewind... Quote Link to comment Share on other sites More sharing options...
phpQuestioner Posted December 30, 2007 Share Posted December 30, 2007 you cannot manually scroll the marquee down; like you would scroll down a window's scrollbar. Quote Link to comment Share on other sites More sharing options...
php? Posted December 30, 2007 Author Share Posted December 30, 2007 When you move your mouse up on the marquee... it fast forwards the text... i want it so when you move your mouse over the marquee and down it rewinds the text Quote Link to comment Share on other sites More sharing options...
phpQuestioner Posted December 30, 2007 Share Posted December 30, 2007 like this? <script language="javascript"> function MarDown() { document.getElementById('scroller').direction='down'; } function MarUp() { document.getElementById('scroller').direction='up'; } </script> <marquee id="scroller" height="350" width="600" onmouseover="MarDown()" onmouseout="MarUp()" direction="up" scrollamount="2"><font size="2"><strong><hr><hr><hr><center>Welcome to Clan Blitz (CB)<img src="images/spacer2.bmp"><br> Clan Blitz website is in beta testing<br>Thank you for visiting.<hr><hr><hr></center></marquee> Quote Link to comment Share on other sites More sharing options...
php? Posted December 30, 2007 Author Share Posted December 30, 2007 Well, all that does is make it scroll down when you hover over the marquee and then up when you stop. If you take a look at my old one you can see that you can move the mouse up, it sort of drags the marquee faster... what i want to add to that is if you move the mouse down it drags the marquee backwards and stops if you hover over the text. This would make it easier to read through everything. Quote Link to comment Share on other sites More sharing options...
php? Posted December 30, 2007 Author Share Posted December 30, 2007 Srry double post, read post before this Quote Link to comment Share on other sites More sharing options...
phpQuestioner Posted December 30, 2007 Share Posted December 30, 2007 If you take a look at my old one you can see that you can move the mouse up, it sort of drags the marquee faster... no it doesn't - it just looks like that because of the start() and stop() global functions interaction with the marquee. what i want to add to that is if you move the mouse down move the mouse down what? if your using stop() onmouseover; then the marquee will do just that; it will stop - it will not stop and move in a specific direction at the same time. Quote Link to comment Share on other sites More sharing options...
php? Posted December 30, 2007 Author Share Posted December 30, 2007 Well if i set the direction of the marquee for going down.. i can do the same thing but in the opposite direction. Any chance i can make it do both? X[) Quote Link to comment Share on other sites More sharing options...
phpQuestioner Posted December 30, 2007 Share Posted December 30, 2007 what? ??? you can not go up and down at the same time Quote Link to comment Share on other sites More sharing options...
php? Posted December 30, 2007 Author Share Posted December 30, 2007 Alright lol, thanks for your help... i guess i'm gonna go with a standard scroll... not a marquee, anyways thanks so much Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.