CSS3 过渡是元素从一种样式逐渐改变为另外一种的效果。web
要实现这一点,必须规定两项内容:it
div:hover { width:300px; }
div { transition: width 2s; -moz-transition: width 2s; /* Firefox 4 */ -webkit-transition: width 2s; /* Safari 和 Chrome */ -o-transition: width 2s; /* Opera */ }