-
Notifications
You must be signed in to change notification settings - Fork 0
/
antiques_slideshow_draft.html
100 lines (95 loc) · 3.33 KB
/
antiques_slideshow_draft.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<SCRIPT LANGUAGE="JavaScript">
<!--
var dimages=new Array();
var numImages=6;
dimages[0]=new Image();
dimages[0].src="http://shard1.1stdibs.us.com/archivesE/upload/8527/149/XXX_8527_1291684709_1.jpg";
dimages[1]=new Image();
dimages[1].src="http://shard3.1stdibs.us.com/archivesB/upload/8523/131/img_6007.jpg";
dimages[2]=new Image();
dimages[2].src="http://shard4.1stdibs.us.com/archivesE/upload/8889/182/XXX_8889_1342031072_1.jpg";
dimages[3]=new Image();
dimages[3].src="http://shard1.1stdibs.us.com/archivesE/upload/8645/505/XXX_8645_1323032559_1.jpg";
dimages[4]=new Image();
dimages[4].src="http://shard1.1stdibs.us.com/archivesE/upload/8751/212/8751_1277150270_1_1_2.jpg";
dimages[5]=new Image();
dimages[5].src="http://shard3.1stdibs.us.com/archivesE/upload/9211/83/XXX_9211_1333298863_1.jpg";
var curImage=-1;
function swapPicture()
{
if (document.images)
{
var nextImage=curImage+1;
if (nextImage>=numImages)
nextImage=0;
if (dimages[nextImage] && dimages[nextImage].complete)
{
var target;
if (document.images.myImage){
target=document.images.myImage;
}
if (document.all && document.getElementById("myImage")){
target=document.getElementById("myImage");
}
// make sure target is valid. It might not be valid
// if the page has not finished loading
if (target)
{
target.src=dimages[nextImage].src;
curImage=nextImage;
}
setTimeout(swapPicture, 2000);
}
else
{
setTimeout("swapPicture()", 500);
}
}
}
setTimeout("swapPicture()", 2000);
//-->
</SCRIPT>
<link href='http://fonts.googleapis.com/css?family=Cinzel' rel='stylesheet' type='text/css'>
<meta charset="utf-8">
<title>Slideshow Lesson</title>
<link href="guide_home.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>A Quick Guide to French Antiques</h1>
<br>
Based on the book <br>
<a href="http://www.amazon.com/French-Furniture-From-Louis-XIII/dp/0821226835"><em>"French Furniture: From Louis XIII to Art Deco"</em></a>
<br>
All photos listed on <a href="http://www.1stdibs.com/"><strong>"1stDibs"</strong></a>
<br>
<h1>The Renaissance Style</h1>
<div class="grid">
<div>
<IMG WIDTH=300 HEIGHT=300 ID="myImage" NAME="myImage"
SRC="http://shard3.1stdibs.us.com/archivesE/upload/9211/83/XXX_9211_1333298863_1.jpg"></IMG>
<h3><a href= "renaissance_tall.html">Tall Cabinet Pieces<a></h3>
</div>
<div>
<img src="http://shard3.1stdibs.us.com/archivesB/upload/8523/131/img_6007.jpg" alt="Renaissance Credenza">
<h3>Low Cabinet Pieces</h3>
</div>
<div>
<img src="http://shard4.1stdibs.us.com/archivesE/upload/8889/182/XXX_8889_1342031072_1.jpg" alt="Renaissance Chest">
<h3>Chests</h3>
</div>
<div>
<img src="http://shard1.1stdibs.us.com/archivesE/upload/8645/505/XXX_8645_1323032559_1.jpg" alt="Renaissance Table">
<h3>Tables</h3>
</div>
<div>
<img src="http://shard1.1stdibs.us.com/archivesE/upload/8751/212/8751_1277150270_1_1_2.jpg" alt="Renaissance Seating">
<h3>Seating</h3>
</div>
<div>
<img src="http://shard3.1stdibs.us.com/archivesE/upload/9211/83/XXX_9211_1333298863_1.jpg" alt="Renaissance Art">
<h3>Art and Ornament</h3>
</div>
</div>