css⽤svg标签连线两个div <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<svg height="400" width="450" >
<path d="M 0 0 q 50 100 190 190" stroke="blue"
stroke-width="5" fill="none" />
</svg>
<svg height="400" width="450" >
<path d="M 0 0 q 50 100 100 150" stroke="blue"
stroke-width="5" fill="none" />
</svg>
<div class="c_1">111</div>
<div class="c_2">222</div>
<div class="c_2">333</div>
<style>
div{
ae能做svg动画吗position: absolute;
background: #ff9900;
width: 100px;
height: 100px;
}
svg{
position: absolute;
z-index: 1;
}</style>
</body>
</html>
  效果如图