A thing.

Size
2,519 Kb
Views
4,048

How do I make an a thing.?

What is a a thing.? How do you make a a thing.? This script and codes were developed by Trevor L.J.M. McIntire on 15 January 2023, Sunday.

A thing. Previews

A thing. - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>A thing.</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="circle"></div>
<div class="circle a"></div>
<div class="circle b"></div>
<div class="circle c"></div>
<div class="circle d"></div>
<div class="circle e"></div>
<div class="circle f"></div>
<div class="circle g"></div>
<div class="circle h"></div>
<div class="circle i"></div>
<div class="line forwardslash"></div>
<div class="line backslash"></div>
<div class="box-container"></div>
<div class="box-container2"></div>
<div class="bubble"></div>
<div class="bubble a"></div>
<div class="bubble b"></div>
<div class="bubble c"></div>
<div class="bubble d"></div>
<div class="bubble e"></div>
<div class="bubble small"></div>
<div class="bubble small a"></div>
<div class="bubble small b"></div>
<div class="bubble small c"></div>
<div class="bubble small d"></div>
<div class="bubble small e"></div> <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
</body>
</html>

A thing. - Script Codes CSS Codes

body, html { display: block; overflow: hidden; margin: 0; padding: 0; box-sizing: border-box; background: #111;
}
.circle { display: block; position: fixed; width: 80px; height: 80px; top: 50%; left: 50%; background: rgba(0,0,0,0); box-sizing: border-box; border-radius: 50%; border: 2px solid #FFF; transform: translateX(-50%) translateY(-50%); animation: 2s infinite 0.1s blink;
}
.circle.a { height: 100px; width: 100px; animation: 2s infinite 0.2s blink;
}
.circle.b { height: 120px; width: 120px; animation: 2s infinite 0.3s blink;
}
.circle.c { height: 140px; width: 140px; animation: 2s infinite 0.4s blink;
}
.circle.d { height: 160px; width: 160px; animation: 2s infinite 0.5s blink;
}
.circle.e { height: 180px; width: 180px; animation: 2s infinite 0.6s blink;
}
.circle.f { height: 200px; width: 200px; animation: 2s infinite 0.7s blink;
}
.circle.g { height: 220px; width: 220px; animation: 2s infinite 0.8s blink;
}
.circle.h { height: 240px; width: 240px; animation: 2s infinite 0.9s blink;
}
.circle.i { height: 260px; width: 260px; animation: 2s infinite 1s blink;
}
.line { display: block; position: fixed; height: 2px; width: calc(100vw + 50vh); top: 50%; left: 50%; z-index: 100; background: #FAFAFA; animation: 3s infinite flicker;
}
.line.backslash { transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.line.forwardslash { transform: translateX(-50%) translateY(-50%) rotate(135deg);
}
.box-container { display: block; position: fixed; height: 50vh; width: 50vw; top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%); background: rgba(0,0,0,0);
}
.box-container::after { display: block; position: absolute; content: ''; top: 0; left: 0; height: 0%; width: 1px; background: rgba(255,255,255,1); animation: 2s infinite border-grow;
}
.box-container::before { display: block; position: absolute; content: ''; top: 0; left: 0; width: 0%; height: 1px; background: rgba(255,255,255,1); animation: 2s infinite border-grow2;
}
.box-container2 { display: block; position: fixed; height: 50vh; width: 50vw; top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%) rotate(180deg); background: rgba(0,0,0,0);
}
.box-container2::after { display: block; position: absolute; content: ''; top: 0; left: 0; height: 0%; width: 1px; background: rgba(255,255,255,1); animation: 2s infinite border-grow;
}
.box-container2::before { display: block; position: absolute; content: ''; top: 0; left: 0; width: 0%; height: 1px; background: rgba(255,255,255,1); animation: 2s infinite border-grow2;
}
.bubble { display: block; position: fixed; width: 50px; height: 50px; top: 80%; left: 90%; border-radius: 50%; border: 1px solid #FFF; background: transparent; animation: 2s infinite bubble;
}
.bubble.small { width: 30px; height: 30px; top: 50%; left: 80%; animation-delay: 0.7s;
}
.bubble.a { top: 15%; left: 30%; animation-delay: 0.3s;
}
.bubble.b { top: 65%; left: 35%; animation-delay: 0.5s;
}
.bubble.c { top: 75%; left: 75%; animation-delay: 0.1s;
}
.bubble.d { top: 15%; left: 90%; animation-delay: 0.4s;
}
.bubble.e { top: 80%; left: 10%; animation-delay: 1s;
}
.bubble.small.a { top: 10%; left: 70%; animation-delay: 0.3s;
}
.bubble.small.b { top: 15%; left: 5%; animation-delay: 0.4s;
}
.bubble.small.c { top: 65%; left: 10%; animation-delay: 1.2s;
}
.bubble.small.d { top: 45%; left: 60%; animation-delay: 0.5s;
}
.bubble.small.e { top: 20%; left: 19%; animation-delay: 1.5s;
}
.bubble::before { display: block; position: absolute; content: ''; top: 50%; left: 50%; width: 0%; height: 1px; background: rgba(255,255,255,1); transform: translateX(-50%) translateY(-50%) rotate(135deg); animation: 2s infinite bubble-border 0.2s;
}
.bubble::after { display: block; position: absolute; content: ''; top: 50%; left: 50%; width: 0%; height: 1px; background: rgba(255,255,255,1); transform: translateX(-50%) translateY(-50%) rotate(45deg); animation: 2s infinite bubble-border;
}
@keyframes bubble { 0% { opacity: 0; } 5% { opacity: 0.3; } 8% { opacity: 0.7; } 12% { opacity: 0.4; } 19% { opacity: 0; } 25% { opacity: 0.6; } 35% { opacity: 0.6; } 35% { opacity: 1; }
}
@keyframes bubble-border { 0% { width: 0%; } 25% { width: 100%; } 50% { width: 100%; opacity: 1; } 60% { opacity: 0; } 100% { opacity: 0; }
}
@keyframes border-grow { 0% { opacity: 1; height: 0%; } 10% { opacity: 0.5; } 20% { opacity: 1; } 30% { opacity: 0.5; } 40% { opacity: 0; } 50% { opacity: 0.5; } 60% { opacity: 1; } 70% { opacity: 0.5; height: 100%; } 85% { opacity: 0; } 100% { opacity: 1; height: 0%; }
}
@keyframes border-grow2 { 0% { opacity: 1; width: 0%; } 10% { opacity: 0.5; } 20% { opacity: 1; } 30% { opacity: 0.5; } 40% { opacity: 0; } 50% { opacity: 0.5; } 60% { opacity: 1; } 70% { opacity: 0.5; width: 100%; } 85% { opacity: 0; } 100% { opacity: 1; width: 0%; }
}
@keyframes blink { 0% { border: 2px solid rgba(255,255,255,1); } 50% { border: 2px solid rgba(255,255,255,1); } 60% { border: 2px solid rgba(255,255,255,0); } 80% { border: 2px solid rgba(255,255,255,0); } 90% { border: 2px solid rgba(255,255,255,1); } 100% { border: 2px solid rgba(255,255,255,1); }
}
@keyframes flicker
{ 0% {opacity:0;} 9% {opacity:0;} 10% {opacity:.5;} 13% {opacity:0;} 20% {opacity:.5;} 45% {opacity:1;} 50% {opacity:0;} 55% {opacity:0.5;} 65% {opacity:1;} 75% {opacity:0.5;} 85% {opacity:0;} 93% {opacity:0.5;} 100% {opacity:1;}
}
A thing. - Script Codes
A thing. - Script Codes
Home Page Home
Developer Trevor L.J.M. McIntire
Username uplusion23
Uploaded January 15, 2023
Rating 4
Size 2,519 Kb
Views 4,048
Do you need developer help for A thing.?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Trevor L.J.M. McIntire (uplusion23) Script Codes
Create amazing love letters with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!