The Arcive of vBulletin Modifications Site. |
|
Turn colors on/off Details »»
|
|||||||||||||||||||||||||
This modification allows users to turn on/off colors in the style (grayscale) - (works in IE Only).
Screenshot: ![]() -------- Installation: In Navbar, search for: HTML Code:
</tr> </table> <!-- / breadcrumb, login, pm info --> HTML Code:
<!-- colors form --> <td class="alt1"> <script language="JavaScript"> <!-- function ColorsOff() { ht = document.getElementsByTagName("html"); ht[0].style.filter = "progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)"; } function ColorsOn() { ht = document.getElementsByTagName("html"); ht[0].style.filter = "progid:DXImageTransform.Microsoft.BasicImage(grayscale=0)"; } function changeButton() { if (document.onoff.B1.value=='Colors Off') { document.onoff.B1.value='Colors On'; ColorsOff() } else { document.onoff.B1.value='Colors Off'; ColorsOn() } } //--> </script> <form name="onoff"> <input type="button" value="Colors Off" name="B1" class="button" style="width: 80px;" onClick="changeButton()" /> </form> </td> <!-- / colors form --> -------- Credits: Thanks to Wayne Luke for his help in making this mod. What's next: Looking for someway to save selected option with cookies. Show Your Support
|
|||||||||||||||||||||||||
| Comments |
|
#2
|
||||
|
||||
|
Interesting thanks
|
|
#3
|
|||
|
|||
|
Work only in IE and it's very useless.
|
|
#4
|
|||
|
|||
|
Think "People With Visual Impairments". It may actually be quite useful to the "usually forgotten minority". To be visually impaired is a huge problem for some surfers as they have great difficulty with certain colours. Having a button to swith off colours can be a huge asset on a specialist website. Not 'useless' at all.
Good job Mazinger! |
|
#5
|
|||
|
|||
|
Oh, very nice! Tagging this for future use.
|
|
#6
|
||||
|
||||
|
Quote:
|
|
#7
|
||||
|
||||
|
It didn't work on my test board. BTW, the button appeared below the Navbar. 3.6.8 PL1. TIA.
|
|
#8
|
||||
|
||||
|
I tested it on IE - not sure about FF, probably I can test it on FF this week.
@Fungsten, add the code above this: HTML Code:
<!-- / breadcrumb, login, pm info -->
|
|
#9
|
||||
|
||||
|
Quote:
Quote:
|
|
#10
|
||||
|
||||
|
Add the code above the first two lines:
HTML Code:
</tr> </table> |
![]() |
|
|