Created
June 16, 2020 16:37
-
-
Save MbarkT3STO/f6c39f66569391707620ba417e7b1598 to your computer and use it in GitHub Desktop.
403 Forbidden
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<h1>4<div class="lock"><div class="top"></div><div class="bottom"></div> | |
</div>3</h1><p>Access denied</p> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const interval = 500; | |
function generateLocks() { | |
const lock = document.createElement('div'), | |
position = generatePosition(); | |
lock.innerHTML = '<div class="top"></div><div class="bottom"></div>'; | |
lock.style.top = position[0]; | |
lock.style.left = position[1]; | |
lock.classList = 'lock'// generated'; | |
document.body.appendChild(lock); | |
setTimeout(()=>{ | |
lock.style.opacity = '1'; | |
lock.classList.add('generated'); | |
},100); | |
setTimeout(()=>{ | |
lock.parentElement.removeChild(lock); | |
}, 2000); | |
} | |
function generatePosition() { | |
const x = Math.round((Math.random() * 100) - 10) + '%'; | |
const y = Math.round(Math.random() * 100) + '%'; | |
return [x,y]; | |
} | |
setInterval(generateLocks,interval); | |
generateLocks(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url('https://fonts.googleapis.com/css?family=Comfortaa'); | |
$bg: darken(#F76B1C, 20%); | |
* { | |
box-sizing: border-box; | |
} | |
body, | |
html { | |
margin: 0; | |
padding: 0; | |
height: 100%; | |
overflow: hidden; | |
} | |
body { | |
background-color: darken(#F76B1C, 20%); | |
font-family: sans-serif; | |
} | |
.container { | |
z-index: 1; | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
transform: translate(-50%,-50%); | |
text-align: center; | |
padding: 10px; | |
min-width: 300px; | |
div { | |
display: inline-block; | |
} | |
.lock { | |
opacity: 1; | |
} | |
h1 { | |
font-family: 'Comfortaa', cursive; | |
font-size: 100px; | |
text-align: center; | |
color: #eee; | |
font-weight: 100; | |
margin: 0; | |
} | |
p { | |
color: #fff; | |
} | |
} | |
.lock { | |
transition: 0.5s ease; | |
position: relative; | |
overflow: hidden; | |
opacity: 0; | |
&.generated { | |
transform: scale(0.5); | |
position: absolute; | |
animation: 2s move linear; | |
animation-fill-mode: forwards; | |
} | |
::after { | |
content: ''; | |
background: darken(#F76B1C, 20%); | |
opacity: 0.3; | |
display: block; | |
position: absolute; | |
height: 100%; | |
width: 50%; | |
top: 0; | |
left: 0; | |
} | |
.bottom { | |
background: #D68910; | |
height: 40px; | |
width: 60px; | |
display: block; | |
position: relative; | |
margin: 0 auto; | |
} | |
.top { | |
height: 60px; | |
width: 50px; | |
border-radius: 50%; | |
border: 10px solid #fff; | |
display: block; | |
position: relative; | |
top: 30px; | |
margin: 0 auto; | |
&::after { | |
padding: 10px; | |
border-radius: 50%; | |
} | |
} | |
} | |
@keyframes move { | |
to { | |
top: 100%; | |
} | |
} | |
@media (max-width: 420px) { | |
.container { | |
transform: translate(-50%,-50%) scale(0.8) | |
} | |
.lock.generated { | |
transform: scale(0.3); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment