IHYPRESS.NET
CSS
HOME | ASP | C | CSS | HTML | JAVASCRIPT | PERL | PHP | PYTHON | RUBY | SVG
Earn Free Bitcoin
CSS ❯ Transitions
<12>
<!DOCTYPE html> <html><head> <meta charset="UTF-8"> <title>Transitions</title> <style> div.tr {transition:width 3s,background-color 3s; width:150px; height:250px; background-color:#0000cc; color:white; font-family:monospace;} div.tr:hover {width:700px; background-color:#cc0000;} </style> </head> <body> <div class="tr">Do a mouse over to see the transition effect.<br> <img src="images/catsup.jpg" alt="world's largest catsup bottle"></div> </body> </html>
Transitions
Do a mouse over to see the transition effect.
world's largest catsup bottle
COPYRIGHT © 2015-2024 IHYPRESS.NET. A DIVISION OF IHY PRESS. ALL RIGHTS RESERVED.