0% found this document useful (0 votes)
17 views4 pages

Bloger Code

The document contains two HTML code snippets. The first snippet implements a page that auto-refreshes and cycles through a list of links displayed in a modal, while the second snippet embeds a specific webpage using an iframe. Both snippets are structured with appropriate HTML elements and JavaScript functions for their respective functionalities.

Uploaded by

dilsydil999
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views4 pages

Bloger Code

The document contains two HTML code snippets. The first snippet implements a page that auto-refreshes and cycles through a list of links displayed in a modal, while the second snippet embeds a specific webpage using an iframe. Both snippets are structured with appropriate HTML elements and JavaScript functions for their respective functionalities.

Uploaded by

dilsydil999
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd

<html lang="en">

<head>

<meta charset="UTF-8">

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

<title>Auto Refresh and Link Loop</title>

<script>

// Function to shuffle an array randomly

function shuffleArray(array) {

for (let i = [Link] - 1; i > 0; i--) {

const j = [Link]([Link]() * (i + 1));

[array[i], array[j]] = [array[j], array[i]];

// Function to refresh the page at a fixed interval

function refreshPage() {

var refreshInterval = 250000;

setInterval(function () {

[Link]();

}, refreshInterval);

// Function to perform the link loop

function executeLoop() {

var links = [

'Your Link 1',

'Your Link 2',


'Your Link 3',

'Your Link 4',

'Your Link 5',

'Your Link 6',

];

// Shuffle the array randomly

shuffleArray(links);

var currentIndex = 0;

function openLink() {

var link = links[currentIndex];

// Display the link in the modal

openModalWithLink(link);

var interval = [Link]([Link]() * (30000 - 20000 + 1) + 20000);

// Close the modal after the specified interval

setTimeout(function () {

closeModal();

// Move to the next link

currentIndex = (currentIndex + 1) % [Link];

// Call openLink again with the updated index

openLink();

}, interval);

// Initial execution

openLink();
}

// Function to open the modal with a given link

function openModalWithLink(link) {

[Link]('modalIframe').src = link;

// Explicitly load the iframe after setting the source

[Link]('modalIframe').onload = function () {

[Link]('myModal').[Link] = 'block';

};

// Function to close the modal

function closeModal() {

[Link]('myModal').[Link] = 'none';

// Initial execution

[Link] = function () {

refreshPage(); // Start the page refresh

executeLoop(); // Start the link loop

};

</script>

</head>

<!-- The Modal -->

<div class="modal" id="myModal" style="display: none;">

<div class="modal-content">

<span onclick="closeModal()" style="cursor: pointer; float: right;">×</span>

<!-- Content of the modal -->


<iframe id="modalIframe" src="" style="border: none; height: 400px; width: 100%;"></iframe>

</div>

</div>

</html>

code 2

<html lang="en">

<head>

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

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

<title>Embedded Page</title>

</head>

<body>

<!-- Adjust the URL to the webpage you want to embed -->

<iframe frameborder="0" height="600px" scrolling="auto"


src="[Link]
width="100%"></iframe>

</body>

</html>

You might also like