Created
October 27, 2021 10:15
-
-
Save khalidmesbah/0ec8fbba5480045d90b2e22e3cb1b9c3 to your computer and use it in GitHub Desktop.
83:Warp Drive
This file contains 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
.frame | |
.warp | |
-for i in (1..30) | |
div class="ring ring-#{i}" | |
-for i in (1..24) | |
div class="stripe stripe-#{i}" |
This file contains 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
$numberOfRings: 30; // sync with HTML | |
$numberOfStripes: 24; // sync with HTML | |
$animationDuration: 4s; | |
.frame { | |
position: absolute; | |
inset: calc(50% - 200px); | |
border-radius: 2px; | |
box-shadow: 1px 2px 10px 0px rgba(0, 0, 0, 0.3); | |
overflow: hidden; | |
background: #1e3242; | |
} | |
.warp { | |
position: absolute; | |
width: 200px; | |
height: 200px; | |
top: 100px; | |
left: 100px; | |
.ring { | |
position: absolute; | |
width: 200px; | |
height: 200px; | |
.stripe { | |
position: absolute; | |
width: 2px; | |
height: 20px; | |
top: 90px; | |
left: 99px; | |
background: #c3dcec; | |
} | |
} | |
@for $i from 1 through $numberOfRings { | |
$nullbase1: $i - 1; | |
$timeOffset: $nullbase1 * ($animationDuration / $numberOfRings) * -1; | |
.ring-#{$i} { | |
animation: ring | |
$animationDuration | |
cubic-bezier(0.98, 0.02, 0.97, 0.12) | |
$timeOffset | |
infinite; | |
@for $j from 1 through $numberOfStripes { | |
$nullBase2: $j - 1; | |
$degree: ((360 / $numberOfStripes) * $nullBase2) - (random() * 10); | |
$offset: 100 - (random() * 40); | |
.stripe-#{$j} { | |
transform: rotate(($degree) + deg) | |
translate3d(0, ($offset) + px, 0) | |
scaleY(($offset / 100)); | |
} | |
} | |
} | |
} | |
} | |
@keyframes ring { | |
0% { | |
transform: scale(0); | |
opacity: 0.1; | |
} | |
90% { | |
opacity: 1; | |
} | |
100% { | |
transform: scale(4); | |
opacity: 1; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment