赞
踩
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> .bar { width: 150px; height: 15px; border: 1px solid red; border-radius: 7px; } .bar_in { width: 50%; height: 100%; background-color: red; transition: all 0.8s; } .bar:hover .bar_in { width: 100%; border-radius: 7px; } </style> </head> <body> <div class="bar"> <div class="bar_in"></div> </div> </body> </html>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。