forked from easybe/easycountdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintro.html
33 lines (32 loc) · 1.12 KB
/
intro.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
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style type='text/css'>
#slider-full-width{
text-align: center;
}
#slider-full-width h2 {
color: #0000CC;
text-shadow: 1px 1px 1px #FFF;
}
</style>
<script type='text/javascript'>//<![CDATA[
function dummy(text) {
document.getElementById("counter").innerHTML = text;
}
function zoom(percent) {
var zoomText = document.getElementById("counter").style.zoom;
var zoom = parseFloat(zoomText);
zoom += parseFloat(percent);
document.getElementById("counter").style.zoom = zoom;
}
//]]>
</script>
</meta>
</head>
<body>
<div id="slider-full-width">
<h2 id="counter" style="zoom: 3.0"></h2>
</div>
</body>
</html>