Code:
<!DOCTYPE html> <html> <head> <style type="text/css"> div { background:url(banner.jpg); transition:width 2s; -moz-transition:width 2s; /* Firefox 4 */ -webkit-transition:width 2s; /* Safari and Chrome */ -o-transition:width 2s; /* Opera */ } div:hover { background:url(banner.jpg); } </style> </head> <body> <div></div> </body> </html>
Comment