cc.html
<!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"><link rel="stylesheet" href="style.css"><title>Charge</title></head><body><section><span></span></section></body></html>
style.css
html, body {margin: 0;height: 100%;}body {display: flex;justify-content: center;align-items: center;background: #ed556a;}section {width: 650px;height: 300px;padding: 10px;position: relative;display: flex;align-items: center;justify-content: center;border: 2px solid white;}span {width: 48px;height: 96px;display: inline-block;position: relative;color: white;border: 3px solid;animation: loading 2s linear infinite alternate;}span::before {content: '';position: absolute;top: -15px;left: 6px;width: 36px;height: 12px;background-color: white;}@keyframes loading {0% {box-shadow: 0 0 inset}100% {box-shadow: 0 -96px inset}}

