codepens/60-gradient-morphing-blob/dist/index.html

26 lines
661 B
HTML
Raw Normal View History

2023-10-06 23:12:53 +02:00
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>CodePen - 60° Gradient Morphing Blob</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<svg viewBox="0 0 200 200">
<defs>
<linearGradient id="gradient" gradientTransform="rotate(90)">
<stop id="gradientStop1" offset="0%" stop-color="var(--startColor)" />
<stop id="gradientStop2 " offset="100%" stop-color="var(--stopColor)" />
</linearGradient>
</defs>
<path d="" fill="url('#gradient')"></path>
</svg>
<p>Hover!</p>
<!-- partial -->
<script type="module" src="./script.js"></script>
</body>
</html>