-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index copy.html
134 lines (107 loc) · 2.89 KB
/
index copy.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>reveal.js</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/black.css">
<link rel="stylesheet" href="plugin/highlight/monokai.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<link rel="stylesheet" href="mycss/Count_Down.css">
<section class="slide1">
<div class="alfa">
<div class="mov">
<div class="frente">
<p id="pp">0%</p>
</div>
<div class="tras">
</div>
<div class="meio">
</div>
</div>
</div>
<script>
const el = document.getElementById("pp");
let num=0;
window.setInterval( function(){
num++;
if( num > 100 ){
num = 0 ;
}
el.innerHTML = num + "%" ;
return el
},1000/5
);</script>
</section>
<section class="slide2">
<link rel="stylesheet" href="mycss/HoverEffect.css">
<div class="imgbox">
<img src="Photo/이지민.jpg" style="--i:2;--j:0;">
<img src="Photo/이지민.jpg" style="--i:1;--j:1;">
<img src="Photo/이지민.jpg" style="--i:0;--j:2;">
<img src="Photo/이지민.jpg" style="--i:-1;--j:3;">
<img src="Photo/이지민.jpg" style="--i:-2;--j:4;">
</div>
</section>
<section class="slide3">
<link rel="stylesheet" href="mycss/Hover_Text.css">
<ul>
<li>
<input type="checkbox"/>
<div>여</div>
</li>
<li>
<input type="checkbox" />
<div>울</div>
</li>
<li>
<input type="checkbox" />
<div>컴</div>
</li>
<li>
<input type="checkbox" />
<div>홈</div>
</li>
<li>
<input type="checkbox" />
<div>페</div>
</li>
<li>
<input type="checkbox" />
<div>이</div>
</li>
<li>
<input type="checkbox" />
<div>지</div>
</li>
</ul>
</section>
<section>
</section>
<section>Slide 5</section>
<section>Slide 6</section>
<section>Slide 7</section>
<section>Slide 8</section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
});
</script>
</body>
</html>