You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
733 B
HTML
27 lines
733 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>二次贝塞尔曲线动画</title>
|
|
</head>
|
|
<body>
|
|
<svg width="500" height="300">
|
|
<defs>
|
|
<clipPath id="clip">
|
|
<path d="M10,10 Q290,10 490,290 M490,292 Q290,10 10,10"/>
|
|
</clipPath>
|
|
</defs>
|
|
<path id="bezierPath" d="M10,10 Q290,10 490,290" stroke="#0005" fill="none" stroke-width=".1em" />
|
|
</svg>
|
|
<div class="ss"></div>
|
|
<style>
|
|
.ss {
|
|
width: 500px;
|
|
height: 300px;
|
|
background-color: red;
|
|
clip-path: url(#clip);
|
|
}
|
|
</style>
|
|
</body>
|
|
</html> |