SVG实现loading
<!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>
.loading-container {
display: flex;
align-items: center;
justify-content: center;
width: 200px;
height: 80px;
background: #fff;
border-radius: 2px;
box-shadow: 0 0 4px #c6c6c6;
}
svg {
position: relative;
width: 46px;
height: 46px;
animation: rotate 1s linear infinite;
}
circle {