欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片
W3School TIY
編輯您的代碼:
<!DOCTYPE html> <html> <head> <style> div { width:100px; height:100px; background:yellow; transition-property:width 1s linear 2s; /* Firefox 4 */ -moz-transition:width 1s linear 2s; /* Safari and Chrome */ -webkit-transition:width 1s linear 2s; /* Opera */ -o-transition:width 1s linear 2s; } div:hover { width:200px; } </style> </head> <body> <div></div> <p>請把鼠標(biāo)指針放到黃色的 div 元素上,來查看過渡效果。</p> <p><b>注釋:</b>本例在 Internet Explorer 中無效。</p> <p><b>注釋:</b>這個過渡效果會在開始之前等待兩秒。</p> </body> </html>
查看結(jié)果:
請在上面的文本框中編輯您的代碼,然后單擊提交按鈕測試結(jié)果。
jb51.net