The Arcive of vBulletin Modifications Site. |
|
[Monkey's Works] - Ghost Images Details »»
|
||||||||||||||||||||||||||
Hi there, guys and gals! I've foud this script: Gradual HighLight Image Script. I've asked myself: "How do I use it all over my forum?". I've used a Replacement Variables! Preview:
Preview (with ImageShack): Modification: Quote:
<!-- ------------------------------[Monkey's Works] - vBulletin.org Releases Archive---------------------------- --> Modifications Thread simple Navbar below QuickReply | Text Editor Toolbar Background | User Profile Web Page | Announcements new Table | Registration Button | enCoded Navbar v1 | Play your Game when in Mainteinance | Hey, guest! You should be a registered member! | Navbar enCoded Navigator / Personal Member Navigator in ForumHome | vPro Navigation Header: Professional Header | White Blank Beautiful Postbit_Legacy Style Styles Black Web City Style <!-- / ----------------------------[Monkey's Works] - vBulletin.org Releases Archive---------------------------- --> Show Your Support
|
||||||||||||||||||||||||||
| Comments |
|
#2
|
|||
|
|||
|
not sure i would want every image to be faded until mouse over.It sort of defeats the object.
|
|
#3
|
||||
|
||||
|
Yes, but maybe someone would like it. I don't know, so I've posted.
|
|
#4
|
||||
|
||||
|
Would be nice on buttons. But not the entire forum.
Good job for the work however. |
|
#5
|
||||
|
||||
|
Interesting ...
Have you tried it or seen it used on a very dark background yet ? |
|
#6
|
||||
|
||||
|
It's simple to do it, I will work on it tomorrow.
|
|
#7
|
||||
|
||||
|
It works, and it has no problem. The main problem, if you're using the vB default style, the buttons borders have a lot of white points around..
|
|
#8
|
||||
|
||||
|
Quote:
OK, Thanks. :up: |
|
#9
|
|||
|
|||
|
Thanks
installed |
|
#10
|
|||
|
|||
|
No JS needed this can be done with CSS only:
This would go in the "Additional CSS Definitions" section near the bottom of style manager Code:
/* faded 50% by default */
img {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=50);
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
/* on hover 100% */
img:hover {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
-moz-opacity: 1;
-khtml-opacity: 1;
opacity: 1;
}
Code:
<td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&noquote=1&p=$FIRSTPOSTID" rel="nofollow"> <if condition="$show['closethread']"><img class="img_op" src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /> <else /> <img class="img_op" src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" /> </if></a> </td> Code:
img {
Code:
img.img_op {
Code:
img.img_op:hover {
Code:
img.img_op:hover {
![]() (sorry for bumping old thread) |
![]() |
|
|