Post: How do you make a cool website where the name slides across the screen?
01-01-2017, 02:56 AM #1
(adsbygoogle = window.adsbygoogle || []).push({}); ThePurgeTeam
ThePurgeTeam
ThePurgeTeam
ThePurgeTeam

The following user thanked ThePurgeTeam for this useful post:

Algebra
01-01-2017, 04:57 PM #2
Originally posted by ThePurgeTeam View Post
ThePurgeTeam
ThePurgeTeam
ThePurgeTeam
ThePurgeTeam


I believe this would be more suited here: You must login or register to view this content.

As for animating the text you can achieve the desired effect like so.

Create a div for containing your text you want animated and then style it. Example < div id = "animatedtext"><marquee>Your animated text here</marquee></div>
Let's style our div now with some css:

#animatedtext {
background-color: /*your choice of background color for the div container*/;
width: /*specify a width here*/;
height: /*specify a height here*/;
}
01-11-2017, 09:49 PM #3
Ali
Can’t trickshot me!
Originally posted by ThePurgeTeam View Post
ThePurgeTeam
ThePurgeTeam
ThePurgeTeam
ThePurgeTeam


An easy way to this is using the marquee tags. I'm nit too sure as I did this like 3-4 years ago and couldn't give a shit bout web development but do some marquee research and you should be good to go. #W3
01-11-2017, 11:29 PM #4
Algebra
[move]mov eax, 69[/move]
Originally posted by ThePurgeTeam View Post
ThePurgeTeam
ThePurgeTeam
ThePurgeTeam
ThePurgeTeam


I made this a while back idk if you will like it or not but it has got the sliding name which is the marquee tag you can also use JavaScript for the title to be animated see below

You must login or register to view this content.

    

<script type='text/javascript'>
//<![CDATA[
title = "Message goes here";
title = "Message goes here" + title;pos = 0;
function scrollTitle() {
document.title = title.substring(pos, title.length) + title.substring(0, pos); pos++;
if (pos > title.length) pos = 0
window.setTimeout("scrollTitle()", 60);
}
scrollTitle();
//]]></script>

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo