-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex_no_php.html
More file actions
94 lines (81 loc) · 3.96 KB
/
index_no_php.html
File metadata and controls
94 lines (81 loc) · 3.96 KB
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" >
<title>Dollmaker</title>
<link rel="stylesheet" type="text/css" href="styles/mainstylesheet.css" charset="utf-8">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
<script type="text/javascript" src="scripts/drag.js"></script>
<!--remove the following line if you do not want anti-rightclick on images-->
<script type="text/javascript" src="scripts/anti-rightclick.js"></script>
</head>
<body>
<!-- You can put your own content up here. You can move the dollmaker on the page using CSS (see mainstylesheet.css for details) -->
<div id="dollmaker_container">
<div id="bodyArea" class="ui-corner-all">
<img class="skintone" src="base/full/2European.png" alt="BaseBody" width="80" height="261">
</div>
<div id="swatchesArea" class="ui-corner-all">
<h3>Skintone:</h3>
<!-- **EDIT HERE**
On each line, in the <a href=""> tag, put the url of your full base.
In the <img src=""> tag, put the url of the thumbnail.
You can have as many of these as you have alternate bases.
-->
<a href="base/full/1European.png"><img src="base/thumbnails/1European.png" alt="swatch"></a>
<a href="base/full/2European.png"><img src="base/thumbnails/2European.png" alt="swatch"></a>
<a href="base/full/3Asian.png"><img src="base/thumbnails/3Asian.png" alt="swatch"></a>
<a href="base/full/4Asian.png"><img src="base/thumbnails/4Asian.png" alt="swatch"></a>
<a href="base/full/5Indian.png"><img src="base/thumbnails/5Indian.png" alt="swatch"></a>
<a href="base/full/6Indian.png"><img src="base/thumbnails/6Indian.png" alt="swatch"></a>
<a href="base/full/7African.png"><img src="base/thumbnails/7African.png" alt="swatch"></a>
<a href="base/full/8African.png"><img src="base/thumbnails/8African.png" alt="swatch"></a>
</div>
<div id="piecesArea">
<!-- **EDIT HERE**
This list corresponds to the tabs. Change the names of the tabs to
whatever you want. You can also add or remove any number of them.
Have a look further below. Notice the <div id="tabs-x"> tags. Each
of those correspond to a different tab and has that tab's content in it.
If you add or remove tabs, update the corresponding div as well. (the
href of the link and the id of the div have to match!)
-->
<ul id="tabsbar">
<li><a href="#tabs-2">Hair</a></li>
<li><a href="#tabs-3">Tops</a></li>
<li><a href="#tabs-4">Bottoms</a></li>
<li><a href="#tabs-5">Shoes</a></li>
</ul>
<!-- **EDIT HERE**
These divs correspond the the content of each tab. Put all the img tags
for your props in them, corresponding to their categories.
-->
<div id="tabs-2"><!--Hair-->
<img alt="" src="images/1Hair/1257390520.png">
<img alt="" src="images/1Hair/1257390533.png">
<img alt="" src="images/1Hair/1257390544.png">
</div>
<div id="tabs-3"><!--Tops-->
<img alt="" src="images/2Tops/1257347014.png">
<img alt="" src="images/2Tops/1257347573.png">
<img alt="" src="images/2Tops/1257347590.png">
<img alt="" src="images/2Tops/1257347611.png">
</div>
<div id="tabs-4"><!--Bottoms-->
<img alt="" src="images/3Bottoms/1257390559.png">
<img alt="" src="images/3Bottoms/1257390571.png">
<img alt="" src="images/3Bottoms/1257390583.png">
<img alt="" src="images/3Bottoms/1257449592.png">
</div>
<div id="tabs-5"><!--Shoes-->
<img alt="" src="images/4Shoes/1257348326.png">
<img alt="" src="images/4Shoes/1257348338.png">
<img alt="" src="images/4Shoes/1259939446.png">
</div>
</div><!--PiecesArea-->
<!--The message for anti-rightclick-->
<div id="anti-rightclick">Please do not steal the images from this dollmaker</div>
</div><!--container-->
</body>
</html>