Bit of an immature request

Lloyd

Member
How do I implement 4chan-esque spoiler tags and greentext?

Example of spoiler tags
Before mouse-over:
1J2oH


After mouse-over:
jNOzbltQpgsdU.png


My screenshot utility doesn't show it but you have to keep the mouse over it to keep the text revealed.

Also, for those who don't know what greentext is, all it is is when you have a greater than symbol in front of a phrase (>) The text will turn green until the next line

>This is greentext
This is normal

I was able to accomplish the spoilers in MyBB by using the MyCode utility.

The code to use it was
text here
And it was implemented with this:

Code:
<span style='color:#000000; background:#000000' onmouseover="style.color='#ffffff'" onmouseout="style.color='#000000'">$1</span>

The greentext was accomplished like this:

Code:
(\n|^)&gt;(.*?)(\n|$)

Replaced by this:

Code:
$1<span style="color: #32CD32;">&gt;$2</span>$3

The issue with the greentext code was that every other line would revert to normal colour text.

e.g.
>Green
>Normal
>Green

or
>Green

>Green

Anyone know why that is?

Thanks for the help.
 
Top Bottom