Skip to main content

Featured

Holi special prompt

PROMPT - Create an ultra-realistic Holi scene with the same unchanged face (exact match). A young woman in 3/4th stance, joyful smile, wearing a pastel lehenga choli covered in Holi powder stains. Slim physique, holding a plate of mixed bright gulal. Long hair flowing dramatically in the wind. Pink and orange color marks on both cheeks. Thick colorful smoke in the background, blurred with bokeh effect. Natural sunlight mixed with color haze, high detail, vibrant festival atmosphere.    PROMPT - Ultra-realistic cinematic Holi portrait of a young man (early 20s) wearing a white kurta and a long scarf/dupatta, covered in colorful gulal powder. He raises one hand forward as bright color dust explodes in the air around him. Soft with eyes slightly closed, stylish messy hair, light beard. Outdoor background with dreamy bokeh, warm golden lighting, vibrant colors, shallow depth of field, dynamic particles, high contrast, 8K photorealistic, festival vibe. PROMPT - Ultra-realistic cine...

Monetag code

 MONETAG CODE LINK...

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Popup Iframe Example</title>
  <style>
    #popupIframe {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border: none;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
      background-color: #fff;
      transition: transform 0.3s ease-in-out;
    }
    #popupIframe.active {
      transform: translate(-50%, -50%) scale(1.05);
    }
    #iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
  </style>
</head>
<body>
  <div id="popupIframe">
    <iframe id="iframe" frameborder="0"></iframe>
  </div>
  <script>
    var urls = [

      ' your link 1 ',
      ' your link 2 ',

    ];
    var currentIndex = 0;
    var displayTimer;
    function startDisplay() {
      var popupIframe = document.getElementById('popupIframe');
      popupIframe.style.display = 'block';
      popupIframe.classList.add('active');
      loadNextUrl();
      displayTimer = setInterval(function() {
        loadNextUrl();
      }, 30000);
    }
    function loadNextUrl() {
      if (currentIndex < urls.length) {
        var iframe = document.getElementById('iframe');
        iframe.src = urls[currentIndex];
        currentIndex++;
      } else {
        var popupIframe = document.getElementById('popupIframe');
        popupIframe.classList.remove('active');
        setTimeout(function() {
          popupIframe.style.display = 'none';
          clearInterval(displayTimer);
        }, 300);
      }
    }
    startDisplay();
  </script>
</body>
</html>

Comments

Popular Posts