Sofia
10/03/2007, 17h23
Remerciements et support / Thanks and support
L'équipe de vBulletin-Ressources.com remercie les auteurs de leurs hacks / The team of vBulletin-Ressources.com thanks the authors for their hacks.
Il ne s'agit aucunement du hack, mais d'un fichier langue qui ajoute les expressions francaises au hack / It is not the hack, but of a file language which adds the French expressions to the hack .
Nous ne fournissons pas le hack, simplement le fichiers langue - vBulletin-Ressources respecte les droits et le travail des auteurs / We do not provide the hack, simply the file language - vBulletin-Ressources respects the rights and the work of the authorsConception
Auteur du Hack / Author Of Hack : BuRaCH (http://www.vbhackers.com/members/burach/)
Source / Link of Thread : bbcode Arc-en-ciel (http://www.vbhackers.com/f76/new-bbcodes-6196/)
Version vBulletin Requise / Version vBulletin Required : vBulletin 3.5 et 3.6
Testé / Tested: oui
Copyright © 2006 vBulletin-Ressources.com - Tous droits réservés / Copyright © 2006 vBulletin-Ressources.com - All Rights ReservedInstallation
Dans votre admincp, allez dans Balises BB personnalisées et ajouter une balise
Titre : Effet Arc-en-ciel
Balise : arcenciel
Code de remplacement :
<script language="JavaScript">
<!-- Hide the script from old browsers --
function MakeArray(n){
this.length=n;
for(var i=1; i<=n; i++) this[i]=i-1;
return this
}
hex=new MakeArray(16);
hex[11]="A"; hex[12]="B"; hex[13]="C"; hex[14]="D";
hex[15]="E"; hex[16]="F";
function ToHex(x){ // Changes a int to hex (in the range 0 to 255)
var high=x/16;
var s=high+""; //1
s=s.substring(0,2); //2 the combination of these = trunc funct.
high=parseInt(s,10); //3
var left=hex[high+1]; // left part of the hex-value
var low=x-high*16; // calculate the rest of the values
s=low+""; //1
s=s.substring(0,2); //2 the combination of these = trunc funct.
low=parseInt(s,10); //3
var right=hex[low+1]; // right part of the hex-value
var string=left+""+right; // add the high and low together
return string;
}
function fadeout(text){
text=text.substring(3,text.length-4);
// gets rid of the HTML-comment-tags
color_d1=255; // any value in 'begin' 0 to 255
mul=color_d1/text.length;
var j=1;
for(i=0;i<text.length;i++){
color_d1=255*Math.sin(i/(text.length/3));
// some other things you can try>>
// "=255-mul*i" to fade out, "=mul*i" to fade in,
// or try "255*Math.sin(i/(text.length/3))"
color_h1=ToHex(color_d1);
color_d2=mul*i;
color_h2=ToHex(color_d2);
color_d3=mul*(text.length-i);
color_h3=ToHex(color_d3);
j = i;
if (text.substring(i,i+1) == '&')
{
for (j = i+1; j < text.length; j++)
{
if (text.substring(j,j+1) == ';') { break; }
}
if (j == text.length) { j = i; }
}
if (text.substring(i,i+1) == '<')
{
for (j = i+1; j < text.length; j++)
{
if (text.substring(j,j+1) == '>') { break; }
}
if (j == text.length) { j = i; }
}
document.write("<FONT COLOR='#"+color_h3+color_h1+color_h2+"'>"+
text.substring(i,j+1)+'</FONT>');
i = j;
}
}
// --End Hiding Here -->
</script>
<script language="JavaScript"><!--
{fadeout("-->{param}<!__");}
//--></script>
Exemple : Votre texte
Description : Effet arc-en-ciel sur le texte
Utiliser un second paramètre {option} : Non
Image de bouton (facultatif) : http://www.picdo.net/Fichiers/e2e17e18d68be2493333c76817d4349a/image7ab8.png
L'équipe de vBulletin-Ressources.com remercie les auteurs de leurs hacks / The team of vBulletin-Ressources.com thanks the authors for their hacks.
Il ne s'agit aucunement du hack, mais d'un fichier langue qui ajoute les expressions francaises au hack / It is not the hack, but of a file language which adds the French expressions to the hack .
Nous ne fournissons pas le hack, simplement le fichiers langue - vBulletin-Ressources respecte les droits et le travail des auteurs / We do not provide the hack, simply the file language - vBulletin-Ressources respects the rights and the work of the authorsConception
Auteur du Hack / Author Of Hack : BuRaCH (http://www.vbhackers.com/members/burach/)
Source / Link of Thread : bbcode Arc-en-ciel (http://www.vbhackers.com/f76/new-bbcodes-6196/)
Version vBulletin Requise / Version vBulletin Required : vBulletin 3.5 et 3.6
Testé / Tested: oui
Copyright © 2006 vBulletin-Ressources.com - Tous droits réservés / Copyright © 2006 vBulletin-Ressources.com - All Rights ReservedInstallation
Dans votre admincp, allez dans Balises BB personnalisées et ajouter une balise
Titre : Effet Arc-en-ciel
Balise : arcenciel
Code de remplacement :
<script language="JavaScript">
<!-- Hide the script from old browsers --
function MakeArray(n){
this.length=n;
for(var i=1; i<=n; i++) this[i]=i-1;
return this
}
hex=new MakeArray(16);
hex[11]="A"; hex[12]="B"; hex[13]="C"; hex[14]="D";
hex[15]="E"; hex[16]="F";
function ToHex(x){ // Changes a int to hex (in the range 0 to 255)
var high=x/16;
var s=high+""; //1
s=s.substring(0,2); //2 the combination of these = trunc funct.
high=parseInt(s,10); //3
var left=hex[high+1]; // left part of the hex-value
var low=x-high*16; // calculate the rest of the values
s=low+""; //1
s=s.substring(0,2); //2 the combination of these = trunc funct.
low=parseInt(s,10); //3
var right=hex[low+1]; // right part of the hex-value
var string=left+""+right; // add the high and low together
return string;
}
function fadeout(text){
text=text.substring(3,text.length-4);
// gets rid of the HTML-comment-tags
color_d1=255; // any value in 'begin' 0 to 255
mul=color_d1/text.length;
var j=1;
for(i=0;i<text.length;i++){
color_d1=255*Math.sin(i/(text.length/3));
// some other things you can try>>
// "=255-mul*i" to fade out, "=mul*i" to fade in,
// or try "255*Math.sin(i/(text.length/3))"
color_h1=ToHex(color_d1);
color_d2=mul*i;
color_h2=ToHex(color_d2);
color_d3=mul*(text.length-i);
color_h3=ToHex(color_d3);
j = i;
if (text.substring(i,i+1) == '&')
{
for (j = i+1; j < text.length; j++)
{
if (text.substring(j,j+1) == ';') { break; }
}
if (j == text.length) { j = i; }
}
if (text.substring(i,i+1) == '<')
{
for (j = i+1; j < text.length; j++)
{
if (text.substring(j,j+1) == '>') { break; }
}
if (j == text.length) { j = i; }
}
document.write("<FONT COLOR='#"+color_h3+color_h1+color_h2+"'>"+
text.substring(i,j+1)+'</FONT>');
i = j;
}
}
// --End Hiding Here -->
</script>
<script language="JavaScript"><!--
{fadeout("-->{param}<!__");}
//--></script>
Exemple : Votre texte
Description : Effet arc-en-ciel sur le texte
Utiliser un second paramètre {option} : Non
Image de bouton (facultatif) : http://www.picdo.net/Fichiers/e2e17e18d68be2493333c76817d4349a/image7ab8.png