h5項目中使用骨架屏占位,感覺網上的閃爍效果不好看,自己弄了一個,動畫時長可自行根據dom大小調整

演示文件
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>骨架屏動畫效果</title>
<style>
#grad1 {
height: 200px;
width: 400px;
animation: loading 8s linear infinite;
background-image: linear-gradient(50deg, #e8e7e7, #e8e7e7 52%, #f1f1f1 55%, #e8e7e7 58%, #e8e7e7);
background-size: 400% 100%;
}
@keyframes loading {
0% {
background-position: 400% 50%
}
to {
background-position: 0% 50%
}
}
</style>
</head>
<body>
<div id="grad1"></div>
</body>
</html>
