-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalanhw17.html
141 lines (139 loc) · 4.33 KB
/
alanhw17.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
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link href="style.css" rel="stylesheet" type="text/css" />
<meta name="description" content="Photoshopped Images by Paint" />
<script src="script.js"></script>
<title>Photoshopped Images</title>
<style>
img {
max-width: 100%;
}
img[src="Morone-St-PROFILE-PHOTO.png"] {
width: 50%;
}
.big {
font-size: 20px;
}
iframe {
border: none;
overflow: hidden !important;
}
.progress {
background-color: gray;
}
.bar {
background-color: lime;
display: inline-block;
}
.newsfeeditem {
padding: 3px;
margin: 3px;
border: 2px solid;
background: rgb(135,206,235);
background: -moz-linear-gradient(0deg, rgba(135,206,235,1) 0%, rgba(176,196,222,1) 100%);
background: -webkit-linear-gradient(0deg, rgba(135,206,235,1) 0%, rgba(176,196,222,1) 100%);
background: linear-gradient(0deg, rgba(135,206,235,1) 0%, rgba(176,196,222,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#87ceeb",endColorstr="#b0c4de",GradientType=1);
}
.newsfeedcontents {
white-space: pre-line;
border: 1px solid;
}
.newsfeed-owner {
font-style: italic;
}
.newsfeeditem h2 {
overflow-wrap: break-word;
}
summary {
list-style: none;
}
.width100 {
width: 100%;
height: 100vh;
}
.fakenotlink {
color: inherit;
text-decoration: none;
pointer: default;
}
label {
padding: 2px;
border: 1px solid;
}
.white {
color: white;
}
.allwidth {
width: 95%;
}
.locked {
background-color: #111111;
color: black;
}
.locked::before {
z-index: 999;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom:
content: "\00a0\00a0";
width: 100%;
background-color: green;
}
</style>
<meta name="introduction" content="no-reference" />
</head>
<body>
<a href="alanhw18.html">Blank Page</a>
<h1>Are You A Morone?</h1>
<p><img src="Morone-St-PROFILE-PHOTO.png" alt="Morone St" /></p>
<p>Please click the button below according to your choice.</p>
<div id="form">
<p>I am <label><input type="checkbox" id="notmorone" /> not</label> <span class="white" style="user-select: none; -o-user-select: none; -moz-user-select: none; -webkit-user-select: none;">not</span> a morone.</p>
<button id="nextpage">Go to next page on site</button></div>
<div id="prompt">
Please complete the form, then the web address to visit will show up below. Rules are simple:
<ul>
<li>No hecking!</li>
<li>Be honest!</li>
</ul>
</div>
<label>Web address to continue: <br /><input id="webaddr" readonly="readonly" value="Not available yet, you hecker who wants to find out this text!" class="allwidth locked" disabled="disabled" title="Locked" /></label>
<a href="alanhw18.html" id="link">visit web address</a>
<script>
document.getElementById('nextpage').addEventListener('click', function() {
document.getElementById('webaddr').classList.remove('locked');
document.getElementById('webaddr').removeAttribute('disabled');
document.getElementById('webaddr').title = 'Unlocked now';
if (document.getElementById('notmorone').checked) {
document.getElementById('webaddr').value = "https://alanhw.weeklyd3.repl.co/alanhw133.html?i-am-a-morone=true";
document.getElementById('link').href = "https://alanhw.weeklyd3.repl.co/alanhw133.html?i-am-a-morone=true";
} else {
document.getElementById('webaddr').value = "https://alanhw.weeklyd3.repl.co/alanhw19.html?i-am-a-morone=false";
document.getElementById('link').href = "https://alanhw.weeklyd3.repl.co/alanhw19.html?i-am-a-morone=false";
}
document.getElementById('form').innerHTML = document.getElementById('notmorone').checked ? "You admitted you are a morone. We feel sorry for you. Use the link below to continue." : "Congrats, you admit that you are not a morone! We'll quiz you further.";
document.getElementById('prompt').classList.add('prompt');
setTimeout(function() { document.getElementById('prompt').innerHTML = ''; }, 1000);
});
</script>
<style>
.prompt {
-webkit-transition: opacitytransform 1000ms linear;
-moz-transition: opacitytransform 1000ms linear;
transition: opacitytransform 1000ms linear;
}
@keyframes opacitytransform {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
</style>