You logged in as Guest
Login:
Recent messages · Members · Forums rules · FAQ · SEARCH Registration · Log in

Page 1 of1
Forum moderator: Armaros 
UcoZ Community » UcoZ System management and tuning » Design customization » Scrolling Text,Images,websites?
Scrolling Text,Images,websites?
tvshqipDate: Saturday, 2008-06-21, 3:44 Pm | Message # 1
Newbie
Group: Users
Messages: 19
Reputation: 0 [0%]
Status: Offline
Does anyone know how to put a scrolling block..like if I want to put some banners scrolling down could i do that and how?
Please help...
Thanks
 
YoshisuperstarDate: Sunday, 2008-06-22, 3:57 Am | Message # 2
Newbie
Group: Users
Messages: 15
Reputation: 0 [0%]
Status: Offline
Hello! smile
You can use informers or baners rotator >
I thing you must use baners rottator,select from the admin bar.
And there modify Settings how you like smile

Need help with ucoz? PM me!
 
tvshqipDate: Sunday, 2008-06-22, 8:51 Pm | Message # 3
Newbie
Group: Users
Messages: 19
Reputation: 0 [0%]
Status: Offline
Its not in it ..Please help
 
SunnyDate: Monday, 2008-06-23, 3:36 Am | Message # 4
Haunter
Group: Administrators
Messages: 822
Status: Offline
tvshqip, here is the code:
Code
<div style="width:100%; height:100%; overflow:auto; border:1px dashed #33bd34;">
Content
</div>
 
tvshqipDate: Monday, 2008-06-23, 9:00 Am | Message # 5
Newbie
Group: Users
Messages: 19
Reputation: 0 [0%]
Status: Offline
Ok.thanks..
But in the Content part..What Do i put..Links or images?
 
SunnyDate: Tuesday, 2008-06-24, 3:21 Am | Message # 6
Haunter
Group: Administrators
Messages: 822
Status: Offline
tvshqip, sorry, I guess I didn't understand you right. Here is the script you need:

Code
<script language="JavaScript">

// Block width in pixels
var marqueewidth=150;
//Block height in pixels
var marqueeheight=150;
//Scrolling speed - the greater is the number, the faster
var speed=2;
//Text, including html tags
var marqueecontents='<font face="Arial"><strong><big>YOUR TEXT AND/OR LINKS</big></strong></font>';

if (document.all)
document.write('<marquee direction="up" scrollAmount='+speed+' style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>');

function regenerate(){
window.location.reload();
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",450);
intializemarquee();
}}

function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents);
document.cmarquee01.document.cmarquee02.document.close();
thelength=document.cmarquee01.document.cmarquee02.document.height;
scrollit();
}

function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed;
setTimeout("scrollit()",100);
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight;
scrollit();
}}

window.onload=regenerate2;
</script>

<ilayer width=&{marqueewidth}; height=&{marqueeheight}; name="cmarquee01">
<layer name="cmarquee02" width=&{marqueewidth}; height=&{marqueeheight};></layer>
</ilayer>
 
tvshqipDate: Tuesday, 2008-06-24, 11:36 Am | Message # 7
Newbie
Group: Users
Messages: 19
Reputation: 0 [0%]
Status: Offline
Sunny..Im sorry but it doesnt scroll down or up..
 
UcoZDate: Wednesday, 2008-06-25, 5:05 Am | Message # 8
UcoZ Admin
Group: Administrators
Messages: 410
Reputation: 32 [5%]
Status: Offline
Quote (tvshqip)
Sunny..Im sorry but it doesnt scroll down or up..

checked, this code works correctly (scroll UP)
 
tvshqipDate: Wednesday, 2008-06-25, 8:37 Am | Message # 9
Newbie
Group: Users
Messages: 19
Reputation: 0 [0%]
Status: Offline
Ok,Thanks..But what if you want to put two links?
 
SunnyDate: Wednesday, 2008-06-25, 8:50 Am | Message # 10
Haunter
Group: Administrators
Messages: 822
Status: Offline
tvshqip, what do you mean? In the text area?
Quote
var marqueecontents='<font face="Arial"><strong><big>YOUR TEXT AND/OR LINKS</big></strong></font>';
 
tvshqipDate: Wednesday, 2008-06-25, 12:10 Pm | Message # 11
Newbie
Group: Users
Messages: 19
Reputation: 0 [0%]
Status: Offline
Yea..I mean if u want to put two images or links how do u..Do u just put two of them there?
 
SunnyDate: Thursday, 2008-06-26, 3:35 Am | Message # 12
Haunter
Group: Administrators
Messages: 822
Status: Offline
Yes.
 
owais1987Date: Thursday, 2008-06-26, 3:39 Am | Message # 13
Newbie
Group: Users
Messages: 3
Reputation: 0 [0%]
Status: Offline
UcoZ, Administrators
plz help me how to search my site in google ? smile

Message edited by owais1987 - Thursday, 2008-06-26, 3:40 Am
 
SunnyDate: Thursday, 2008-06-26, 3:56 Am | Message # 14
Haunter
Group: Administrators
Messages: 822
Status: Offline
owais1987, don't you think it's a question to google?

P.S. If you will post in irrelevant topics again, your posts will be deleted without any replies and comments.

 
l2viruzDate: Thursday, 2008-06-26, 4:01 Pm | Message # 15
Constant
Group: Checked
Messages: 168
Reputation: 8 [1%]
Status: Offline
Man try this code!

For Text!

Code
<marquee width=200 height=200 id="scroller" direction="up" scrollamount="2">
Your text HERE!
</marquee>

For Images!

Code
<marquee width=200 height=200 id="scroller" direction="up" scrollamount="2">
<img src="Url of image">
</marquee>

NOTE:* The direction of the marquee can be changed by changing the work "up" to "down","left","right".
Scrollamount is the speed of the marquee! If u want it to be faster place a bigger number in "scrollamount = "number" "

Message edited by l2viruz - Thursday, 2008-06-26, 4:03 Pm
 
UcoZ Community » UcoZ System management and tuning » Design customization » Scrolling Text,Images,websites?
Page 1 of1
Search: