-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·45 lines (40 loc) · 893 Bytes
/
index.html
File metadata and controls
executable file
·45 lines (40 loc) · 893 Bytes
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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="utf-8" />
<title>tamat</title>
<script type="text/javascript" src="js/jquery-1.5.2.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<style type="text/css">
.slide {
height: 120px;
overflow: hidden;
width: 350px;
}
.slide button {
color:white;
background-color: black;
border:none;
}
.js #slidebottom .inner {
display: none;
}
.slide .inner {
background-color: orange;
bottom: 0;
color: #333333;
height: 36px;
left: 0;
position: absolute;
width: 100%;
overflow: hidden;
}
</style>
</head>
<body>
<div id="slidebottom" class="slide">
<button>click it</button>
<div class="inner">yeah baby</div>
</div>
</body>
</html>