-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscope.html
116 lines (85 loc) · 1.95 KB
/
scope.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
<style>
body {
padding: 40px;
user-select: none;
font-size: 17px;
}
.content {
position: relative;
}
.box {
position: absolute;
width: 50px;
height: 50px;
left: 120px;
top: 50px;
display: none;
}
.top,
.bottom,
.left,
.right {
display: inline-block;
line-height: 1.3;
text-align: center;
position: absolute;
background-color: #333;
color: #fff;
padding: 4px;
}
.box .div__hover,.box div:hover {
background: #ff9c00;
}
.top {
top: -80%;
}
.left {
left: -160%;
}
.bottom {
bottom: -20%;
}
.right {
right: -120%;
}
.result {
margin-top: 100px;
word-break: break-all;
}
.result-title {
background: #121212;
color: #fff;
}
</style>
</head>
<body>
<script>
// function testF() {
// newV = "notUsingVar";
// document.write("testF!");
// var sV = "usingV";
// }
// testF();
// document.write("<br>" + newV + sV);
// Setup
var outerWear = "T-Shirt";
function myOutfit() {
// Only change code below this line
var outerWear = "sweater";
// return outerWear;
document.write(outerWear);
}
// document.write(myOutfit());
myOutfit();
document.write("<br>" + outerWear);
</script>
</body>
</html>