Simple Machines Community Forum

Customizing SMF => Modifications and Packages => Mod Requests => Aiheen aloitti: Dubz2013 - helmikuu 25, 2012, 06:52:19 IP

Otsikko: Cycling member group names
Kirjoitti: Dubz2013 - helmikuu 25, 2012, 06:52:19 IP
I asked my friend if it was possible to make the color of a member group cycle instead of being one color. He gave me a link to a site and found this code that I tested and it worked as I wanted.

The code on the page is this:

<!-- Add the below code
where you wish the text to appear on the page: -->

<b>
<font size="5">
<script>

// ********** MAKE YOUR CHANGES HERE

var text="RAINBOW TEXT"     //   YOUR TEXT
var speed=80    //   SPEED OF FADE - Lower = faster / Higher = slower

// ********** LEAVE THE NEXT BIT ALONE!

// **** Do Not Alter Code Below ****
if (document.all||document.getElementById){
document.write('<span id="highlight">' + text + '</span>')
var storetext=document.getElementById? document.getElementById("highlight") : document.all.highlight
}
else
document.write(text)
var hex=new Array("00","14","28","3C","50","64","78","8C","A0","B4","C8","DC","F0")
var r=1
var g=1
var b=1
var seq=1
function changetext(){
rainbow="#"+hex[r]+hex[g]+hex[b]
storetext.style.color=rainbow
}
function change(){
if (seq==6){
b--
if (b==0)
seq=1
}
if (seq==5){
r++
if (r==12)
seq=6
}
if (seq==4){
g--
if (g==0)
seq=5
}
if (seq==3){
b++
if (b==12)
seq=4
}
if (seq==2){
r--
if (r==0)
seq=3
}
if (seq==1){
g++
if (g==12)
seq=2
}
changetext()
}
function starteffect(){
if (document.all||document.getElementById)
flash=setInterval("change()",speed)
}
starteffect()
</script>
</font></b>


Basically what I was thinking is on the member group edit page, you could have 2 bullets, a cycle option, and custom. The cycle bullet would basically make it cycle colors. The custom would obviously make it so you could enter your own color in a text box next to it. I would try to edit my forum to do this itself, but I don't want to mess it all up. If someone made a mod that could do this it would be great!