26 lines
661 B
HTML
26 lines
661 B
HTML
<!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>
|