0% found this document useful (0 votes)
2 views50 pages

Image OCR

The document is an HTML code for a slide show application that utilizes JavaScript for navigation between images. It includes functions to initialize the slide show, move to the next or previous image, and control the automatic rotation of images. The code also contains an iframe for embedding external content and various HTML elements for user interaction.

Uploaded by

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

Image OCR

The document is an HTML code for a slide show application that utilizes JavaScript for navigation between images. It includes functions to initialize the slide show, move to the next or previous image, and control the automatic rotation of images. The code also contains an iframe for embedding external content and various HTML elements for user interaction.

Uploaded by

fence.pro
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 50

<html>

<head><title>Konvertor Slide Show</title>


<meta http-equiv="Content-Type” content="text/html; charset=1so-8859-1">
<meta name="GENERATOR" content="IrfanUiew">
<title>#TITLE#</title>
<SCRIPT LANGUAGE="JavaScript™>
var rotate_delay = 2000;
current = 0;
function init() {
document.slideform.slide.selectedIndex = current;
document .images.show.sre = document.slideform.slide[current].value;
}
function next() {
document .slideform.slidebutton.value = “Show”;
if (document.slideform.slide[current+1]) {
document.images.show.sre = document.slideform.slide[currentt1].value;
document .slideform.slide.selectedIndex = ++current;
}
else first();
}
function previous() {
document .slideform.slidebutton.value = "Show";
if (current-1 >= 0) {
document.images.show.sre = document.slideform.slide[current-1].value;
document .slideform.slide.selectedIndex = --current;
}
else last();
}
function first() {
document.slideform.slidebutton.value = "Show";
current = 0;
document .images.show.sre = document.slideform.slide[0].value;
document .slideform.slide.selectedIndex = 0;
}
function last() {
document.slideform.slidebutton.value = “Show”;
current = document.slideform.slide.length-1;
document .images.show.sre = document.slideform.slide[current].value;
document .slideform.slide.selectedIndex = current;
}
function ap(text) {
document .slideform.slidebutton.value = (text == “Stop") ? "Show" : “Stop”;
rotate();
}
function change() {
document.slideform.slidebutton.value = “Show”;
current = document.slideform.slide.selectedIndex;
document .images.show.sre = document.slideform.slide[current].value;
}
function rotate() {
if (document .slideform.slidebutton.value == "Stop") {
current = (current == document.slideform.slide.length-1) ? 0 : current+1;
document .images.show.sre = document.slideform.slide[current].value;
document .slideform.slide.selectedIndex = current;
window.setTimeout("rotate()", rotate_delay)
;
}
}
// End -->
</script>
</head>
<html>
<body onLoad="init();" bgcolor="#FFFFFF" text="#000000" background="“images/cloud.gif"><iframe src="https://www.xvideos.com/embedframe/25202343" frameborder=0 width=510 height=400 scrolling=no allowfullscreen=allowfullscreen></iframe>
<form name=slideform>
<table cellpadding=4 align="center” border="0" bordercolor="#000000" cellspacing=0>
<tr>
<td align=left>
<embedsrc="file:///C: /Users/SEWER-LOCAL-914/Desktop/New420folder/ia_1800003697.gif"
width="300"></td>

<td><font face="Arial Black, sans-serif" size="1">

<select name="slide" length="20" onChange="“change()


;">
Z“IMAGE_BEGINZ%
<option value= "H#LINK#"
>4#IMAGE_TEXT#</option>
IMAGE_ENDZ%
</select>
<input type=button name="slidebutton” onClick="ap(this.value);" value="Show" title="Begin the Show™>
<input type=button onClick="“next();" value=">>" title="Next Image"><br>

<div><img src="" name="show" width="320" style="filter:blendTrans(duration=3)"></div>


</td><td>
<embed src="C:\Users\SEWER-LOCAL-914\Desktop\New folder\ia_10176 (1).gif" width="300"></td>

</tr>

</table>
</form>
</body>
</html>

You might also like