用到了CSS3的transition屬性,其實是從左往右擴展的。因為設置了塊居中,產生從中心向左右擴展的感覺
<!doctype html><html><head><style> #box{ background-color:gray; height:20px; overflow:hidden; } .a{ background-color:red; width:0; height:20px; margin: 0 auto; transition:width .8s; -webkit-transition:width .8s; } #box:hover .a{ width:100%; transition:width .8s; -webkit-transition:width .8s; }</style></head><body><div id="box"><div class="a"></div></div></body></html>
新聞熱點
疑難解答