Simple Borg 🤖 Cube 🕋 CSS 3D 🌌

Developer
Size
4,299 Kb
Views
46,552

How do I make an simple borg 🤖 cube 🕋 css 3d 🌌?

What is a simple borg 🤖 cube 🕋 css 3d 🌌? How do you make a simple borg 🤖 cube 🕋 css 3d 🌌? This script and codes were developed by Chris Simmons on 19 September 2022, Monday.

Simple Borg 🤖 Cube 🕋 CSS 3D 🌌 Previews

Simple Borg 🤖 Cube 🕋 CSS 3D 🌌 - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Simple Borg 

Simple Borg 🤖 Cube 🕋 CSS 3D 🌌 - Script Codes CSS Codes

@font-face { font-family: 'airborne'; src: url("https://christopher-simmons.github.io/fonts/airborne.ttf") format("truetype");
}
body { width: 100vw; min-height: 100vh; overflow: hidden; background-color: black; background-image: -webkit-radial-gradient(bottom ellipse, rgba(0, 128, 0, 0.25) 0%, #000000 100%); background-image: radial-gradient(ellipse at bottom, rgba(0, 128, 0, 0.25) 0%, #000000 100%);
}
body:before { content: ''; width: 100%; height: 100%; background: url(https://i.imgsafe.org/684a64902d.png); position: absolute; top: 0; left: 0; z-index: 1;
}
.hover { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; color: black; opacity: 0; -webkit-transition: all .5s ease; transition: all .5s ease; font-size: 2.25vw; font-variant: uppercase; letter-spacing: .25vw; font-family: 'airborne'; cursor: none;
}
.hover:hover { opacity: 1; -webkit-animation: glow 1s ease infinite; animation: glow 1s ease infinite;
}
.container,
.hover { width: 30vw; height: 30vw; position: absolute; -webkit-perspective: 1000px; perspective: 1000px; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); z-index: 2;
}
.container #cube,
.hover #cube { width: 100%; height: 100%; position: absolute; -webkit-transform-style: preserve-3d; transform-style: preserve-3d; -webkit-animation: rotate 20s linear infinite; animation: rotate 20s linear infinite;
}
.container #cube div,
.hover #cube div { margin: 0; width: 100%; height: 100%; display: block; position: absolute; outline: 1px solid transparent; background-image: url(https://i.imgsafe.org/684231f368.jpg); background-size: 100% 100%; background-repeat: no-repeat;
}
.container #cube .front,
.hover #cube .front { background-color: red; background-image: url(https://i.imgsafe.org/68424859a6.jpg); -webkit-transform: rotateY(0deg) translateZ(15vw); transform: rotateY(0deg) translateZ(15vw);
}
.container #cube .back,
.hover #cube .back { background-color: green; -webkit-transform: rotateX(180deg) translateZ(15vw); transform: rotateX(180deg) translateZ(15vw);
}
.container #cube .right,
.hover #cube .right { background-color: blue; -webkit-transform: rotateY(90deg) translateZ(15vw); transform: rotateY(90deg) translateZ(15vw);
}
.container #cube .left,
.hover #cube .left { background-color: yellow; -webkit-transform: rotateY(-90deg) translateZ(15vw); transform: rotateY(-90deg) translateZ(15vw);
}
.container #cube .top,
.hover #cube .top { background-color: orange; -webkit-transform: rotateX(90deg) translateZ(15vw); transform: rotateX(90deg) translateZ(15vw);
}
.container #cube .bottom,
.hover #cube .bottom { background-color: purple; -webkit-transform: rotateX(-90deg) translateZ(15vw); transform: rotateX(-90deg) translateZ(15vw);
}
@-webkit-keyframes rotate { 0% { -webkit-transform: rotateY(0deg) rotateX(0deg); transform: rotateY(0deg) rotateX(0deg); } 100% { -webkit-transform: rotateY(360deg) rotateX(720deg); transform: rotateY(360deg) rotateX(720deg); }
}
@keyframes rotate { 0% { -webkit-transform: rotateY(0deg) rotateX(0deg); transform: rotateY(0deg) rotateX(0deg); } 100% { -webkit-transform: rotateY(360deg) rotateX(720deg); transform: rotateY(360deg) rotateX(720deg); }
}
@-webkit-keyframes glow { 0% { text-shadow: .1vw .1vw .1vw green, .1vw -.1vw .1vw green, -.1vw .1vw .1vw green, -.1vw -.1vw green; } 50% { text-shadow: .1vw .1vw .1vw green, .1vw -.1vw .1vw green, -.1vw .1vw .1vw green, -.1vw -.1vw green, .2vw .2vw .3vw MIDNIGHTBLUE, .2vw -.2vw .3vw MIDNIGHTBLUE, -.2vw .2vw .3vw MIDNIGHTBLUE, -.2vw -.2vw .3vw MIDNIGHTBLUE; } 100% { text-shadow: .1vw .1vw .1vw green, .1vw -.1vw .1vw green, -.1vw .1vw .1vw green, -.1vw -.1vw green; }
}
@keyframes glow { 0% { text-shadow: .1vw .1vw .1vw green, .1vw -.1vw .1vw green, -.1vw .1vw .1vw green, -.1vw -.1vw green; } 50% { text-shadow: .1vw .1vw .1vw green, .1vw -.1vw .1vw green, -.1vw .1vw .1vw green, -.1vw -.1vw green, .2vw .2vw .3vw MIDNIGHTBLUE, .2vw -.2vw .3vw MIDNIGHTBLUE, -.2vw .2vw .3vw MIDNIGHTBLUE, -.2vw -.2vw .3vw MIDNIGHTBLUE; } 100% { text-shadow: .1vw .1vw .1vw green, .1vw -.1vw .1vw green, -.1vw .1vw .1vw green, -.1vw -.1vw green; }
}
/* Profile Link */
.button.me { font-size: 36px; font-size: 3vw; position: absolute; bottom: 5%; right: 5%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; opacity: .5; -webkit-transition: opacity .5s ease; transition: opacity .5s ease; border-radius: 5px; z-index: 9999;
}
@media (max-width: 100vw) { .button.me { font-size: 3vw; }
}
@media (min-width: 1200px) { .button.me { font-size: 36px; }
}
.button.me:hover { opacity: 1;
}
Simple Borg 🤖 Cube 🕋 CSS 3D 🌌 - Script Codes
Simple Borg 🤖 Cube 🕋 CSS 3D 🌌 - Script Codes
Home Page Home
Developer Chris Simmons
Username chrissimmons
Uploaded September 19, 2022
Rating 3.5
Size 4,299 Kb
Views 46,552
Do you need developer help for Simple Borg 🤖 Cube 🕋 CSS 3D 🌌?

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!

Chris Simmons (chrissimmons) Script Codes
Create amazing Facebook ads 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!