Untitled

 avatar
unknown
plain_text
2 years ago
842 B
5
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <style>
    body {
      margin: 0;
      overflow: hidden;
    }

    .tulip {
      position: absolute;
      width: 0;
      height: 0;
      border-left: 25px solid transparent;
      border-right: 25px solid transparent;
      border-bottom: 50px solid #ff69b4; /* Pink color */
      border-radius: 50% 50% 0 0;
      animation: bloom 5s infinite alternate;
    }

    @keyframes bloom {
      0% {
        transform: translateY(0) scaleY(0.2);
      }
      100% {
        transform: translateY(-100%) scaleY(1);
      }
    }
  </style>
</head>
<body>
  <script>
    function createTulip() {
      const tulip = document.createElement('div');
      tulip.className = 'tulip';
      tulip.style
Editor is loading...
Leave a Comment