Slide Show

Whiz fayisal do it again code

I kindly request you to check out YouTube video of whiz Fayisal or ask for assistance in the comments section of relevant video. This way, you can learn and get help in making modifications to the code. 

Signup to Adsterra: Click Here


Code 1:


<html lang="en">

<head>

<meta charset="UTF-8"></meta>

<meta content="width=device-width, initial-scale=1.0" name="viewport"></meta>

<title>Blogspot Example</title>

<script>

window.onload = function() {

    setTimeout(function() {

        var iframeSrc = document.querySelector("iframe").src;

        var newTab = window.open(iframeSrc, "_blank");

        

        setTimeout(function() {

            if (isMouseInsideWindow()) {

                document.documentElement.click();

            }

        }, 15000);

    }, 10000);

};


function isMouseInsideWindow() {

    return event.clientX > 0 && event.clientY > 0 && event.clientX < window.innerWidth && event.clientY < window.innerHeight;

}

</script>

</head>

<body>

Paste your FB Embed Code Here

</body>

</html>

Code 2:


<script>
  function toggleClickAnimation(link) {
    link.classList.add('click-animation');
    setTimeout(function() {
      link.classList.remove('click-animation');
    }, 1000);
  }
  function simulateTextClick(link) {
    toggleClickAnimation(link);
    setTimeout(function() {
      window.open(link.href, '_blank');
    }, 1000);
  }
  function clickHyperlinks() {
    var links = document.querySelectorAll('a');
    links.forEach(function(link) {
      if (link.textContent.trim() === 'Clickable text') {
        var uniqueDelay = Math.random() * 20000;
        setTimeout(function() {
          simulateTextClick(link);
        }, uniqueDelay);
      }
    });
  }
  window.onload = function() {
    clickHyperlinks();
  };
</script>

Note: always use referral accounts of adsterra and monetag network

1 comment:

  1. bhaijaan Code 2 kaam nahi kar raha hai
    need your help! pls help

    ReplyDelete