无废话,基础的svg画法,慢慢更新
webrtc sfu-钱波
video {
border: 1px solid black;
width: 640px;
height: 360px;
}
.local {
border: 1px solid red;
width: 640px;
height: 360px;
}
.red {
fill: red;
}
.fancy {
fill: none;
stroke: black;
stroke-width: 3pt;
}
#testSvg {
border: 1px solid #ccc;
}
.testSvg {
border: 1px solid #ccc;
}
#testSvg circle {
fill: red;
stroke: blue;
stroke-width: 1;
}
var circle = document.getElementById("testCircle");
circle.addEventListener("click", function (e) {
console.log("Click circle ...");
circle.setAttribute("r", 65);
}, false);