标签:name viewport type meta ati add oct content init
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>skeleton-loading</title> <style> * { padding: 0; margin: 0; } div { width: 300px; height: 300px; margin: 100px auto; background: linear-gradient( 90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63% ); background-size: 400% 100%; background-position: 100%; animation: skeleton-loading 1s ease infinite; } @keyframes skeleton-loading { 0% { background-position: 100%; } 100% { background-position: 0; } } </style> </head> <body> <div></div> </body> </html>
标签:name viewport type meta ati add oct content init
原文地址:https://www.cnblogs.com/stefzi/p/13174891.html