给大家分享一个用CSS 3.0实现时光轴加载动画,效果如下:
以下是代码实现,欢迎大家复制、粘贴和收藏。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS 3.0实现时光轴加载动画</title>
<style>
html {
height: 100%;
background: linear-gradient(#813b97, #463c96);
}
@-webkit-keyframes progress1 {
0% {
transform: scalex(0);
opacity: 0.5;
}
90% {
transform: scalex(1);
opacity: 1;
}
92% {
transform