Not Solved fade in link hover?
#1
Not Solved
is it possible to replace this - [Image: 9ffdb90e998b71d3f49b8ac0fa9f6f6d.gif]

with something like this fade- in effect - [Image: b295b2bad5997ca17e1b6783bbb6f87d.gif]
TWISTED SISTER ROCKS!
[Image: bCRctmd.jpg]
Reply
#2
Not Solved
Add transition in css!

Eg:
transition: 0.5s;
Reply
#3
Not Solved
Transitions in both ways, example:

Quote:.test a:link, .test a:visited {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}

.test a:hover, .test a:active {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
I don't give support on PM.
Reply
#4
Not Solved
Thanks Guys! i was wondering with transitions is there anything else they can be used for on forum?
TWISTED SISTER ROCKS!
[Image: bCRctmd.jpg]
Reply
#5
Not Solved
sorry for going off topic but this means that 1.8 has been released?.
Reply
#6
Not Solved
No, this means, there has been created a support section for the mybb 1.8. Mybb 1.8 seems to be released tomorrow.
Roses are red
violets are blue
sunflowers are yellow
i bet you were expecting something romantic but no
these are just gardening facts
Reply
#7
Not Solved
(2014-08-30, 06:59 PM)Billie Joe Armstrong Wrote: Thanks Guys! i was wondering with transitions is there anything else they can be used for on forum?

You can create buttons with opacity 0.5 and then, when you hover, put opacity 1 and add this effect, try it =).
I don't give support on PM.
Reply
#8
Not Solved
(2014-08-30, 08:04 PM)eNvy Wrote:
(2014-08-30, 06:59 PM)Billie Joe Armstrong Wrote: Thanks Guys! i was wondering with transitions is there anything else they can be used for on forum?

You can create buttons with opacity 0.5 and then, when you hover, put opacity 1 and add this effect, try it =).

If i wanted the fade in and out effect on buttons would i just add the same code? 
And thank you!
TWISTED SISTER ROCKS!
[Image: bCRctmd.jpg]
Reply
#9
Not Solved
(2014-08-30, 06:42 PM)eNvy Wrote:
Quote:.test a:link, .test a:visited {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}

.test a:hover, .test a:active {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}

and to add a nice movement to  :hover
just add
margin-left: 5px;
 
(2014-08-30, 08:22 PM)Billie Joe Armstrong Wrote: If i wanted the fade in and out effect on buttons would i just add the same code?

yes , and you can play with it

as @eNvy was sain` you can give to :link , :visited {opacity: 0.5;} and to :hover , :active { opacity: 1;} , so when you hover the button it will lighten up
and you can use opacity with the transitions and you`l have a nice effect ...

Happy coding!
eko
Reply
#10
Not Solved
(2014-08-30, 06:42 PM)eNvy Wrote:
Quote:-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;

For what its worth, -webkit is the only prefix you need now, -moz, -ms and -o were dropped a long time ago, only a few older versions of webkit still require the prefix (Past versions of Safari and old stock Android browsers).
http://caniuse.com/#feat=css-transitions
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)