<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
body{
background: #000;
margin: 111px;
}
#rect3{
fill: #f88;
}
#rect1:hover{
fill: #f0f;
}
#rect2:hover{
fill: #f33;
}
</style>
</head>
<body>
<svg height="999px" width="999px">
<rect id="rect1" height="111px" width="111px" fill="#3f3" />
<rect id="rect2" height="111px" width="111px" fill="#3fa" x="222px" />
<rect id="rect3" height="33px" width="333px" y="222px" />
</svg>
</body>
</html>
Canvas-开始玩svg
最新推荐文章于 2025-06-03 15:24:29 发布