Menu css3 & jquery with blur effect -
i have problem menu on website: http://goo.gl/xc1e5f
when hover mouse on button "about", other buttons have effect blur permanently. make blur disappear after 1 second (that without). (exaclty when use automatic focus camera, adjust focus , goes away)
can me? thanks!
css3 animation should solution:
@keyframes myfirst{ 0% { background: transparent; color: #000; text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.6); } 50% { background: rgba(255, 255, 255, 0.2); color: transparent; text-shadow: 0 0 5px #000000; } 100% { background: transparent; color: #000; text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.6); } }
i've created fiddle demonstrate it.
Comments
Post a Comment