The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Wabuf BB Code Pack! Details »» | |||||||||||||||||||||||||
WaBuF BB Code Pack!!! ---Since V1.0---Included BB codes: Background colors Strike through Scrolling Marquee Acronym ---New in V2.0--- Glow Drop Shadow Rainbow Blur Updated instructions to fix gif to GIF also! Instructions in Zip Don't forget to click install! DEMO: http://www.wabuf.com/forums/misc.php?do=bbcode Show Your Support
|
Comments |
#22
|
|||
|
|||
Quote:
And don't worry, I'm planning on getting some far advanced ones for V3.0 in the near future. It's just people need basic ones now. Later comes advanced ones (some are getting snatched up left and right, so it may take a while) |
#23
|
|||
|
|||
It's not a matter of which is more commonly found. It's a matter of coding. If you write IE-proprietary code, you're shunning 25 to 75 percent of the users on your site, and it also means you're both writing pathetic, sloppy code and supporting Microsoft.
Fail. |
#24
|
|||
|
|||
What is all of this stuff below, and what/where do I do with it??? Thanks
These: Title: Marquee tag: Marquee Replacement: <marquee>{param}</marquee> Example: [Marquee]Scrolling text[/Marquee] Description: Makes text scroll from right to left Use {option}: no Button Image: /"your forum root"/images/marquee.GIF Title: Strike Through Tag: Strike Replacement: <span style="text-decoration: line-through;">{param}</span> Example: [Strike]Text goes here[/Strike] Description: Makes a line through text. Use {option} no Button Image: /"your forum root"/images/strike.GIF Title: Background Color Tag: Bgcolor Replacement: <div style="width: 100%; background-color:{option}">{param}</div> Example: [Bgcolor=red]text goes here[/Bgcolor] Description: Adds background color to your posts. Use {option} yes Button Image: /"your forum root"/images/bg.GIF |
#25
|
||||
|
||||
Can anyone tell me where I would have to place the code from some of these to use them for UserGroup names? Like, I want to make Admons names show in rainbow text. Where would I place the code for that. Thank you.
|
#26
|
|||
|
|||
Installed for the [rainbow] tag. I didn't think much of BB-codes at first, but recently I've been making plenty of bb-codes and replacement variables that are really helping out in my forum (most forum specific, sorry guys).
Like for example, I have a logo image that I use over and over again in posts, and it has gotten REALLY annoying to type out every time, and even worse to fix all the posts whenever we move to a different server or whatnot. So I now have a Replacement Variable {logo}. Thanks for sharing! |
#27
|
|||
|
|||
Quote:
Besides, you're making the rest of us anti-microsoft people look like jerks. So chill, yeah? Wabuf - *installed* =) |
#28
|
|||
|
|||
Thanks man, great work!
|
#29
|
|||
|
|||
Quote:
You would then fill in the fields as they are listed (i.e. where it says "Tag" you would put what I put after the colon) as for the admin name being rainbowed colored, I don't know that javascript would work in username HTML markup. |
#30
|
|||
|
|||
Quote:
Create a file in your clientscript folder called rainbow.js (would also make the BB-code replacement text simpler): Code:
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(4,text.length); // 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('<span style="color:#'+color_h3+color_h1+color_h2+'">'+ text.substring(i,j+1)+'</span>'); i = j; } } HTML Code:
<script type="text/javascript" src="$vboptions[bburl]/clientscript/rainbow.js"></script> Opening tag: HTML Code:
<script type="text/javascript">fadeout("//-->
HTML Code:
");</script>
|
#31
|
|||
|
|||
Salü,
wie geht das mit dem Marquee right Code? Gruß Indy |
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|