Fallout 4 - Logo screen

Developer
Size
2,929 Kb
Views
10,120

How do I make an fallout 4 - logo screen?

Fallout 4 Title screenAudio + SVG + CSS3 (and a little Javascript ;-)). What is a fallout 4 - logo screen? How do you make a fallout 4 - logo screen? This script and codes were developed by Manz on 18 January 2023, Wednesday.

Fallout 4 - Logo screen Previews

Fallout 4 - Logo screen - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Fallout 4 - Logo screen</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <svg xmlns="http://www.w3.org/2000/svg" class="fallout4" viewBox="0 0 58 18"> <g> <path class="letters" d="M3.032 9.095v6.339H0V0h7.166v2.205H3.032V6.89h4.134v2.205zM10.264 9.095h1.929l.01-1.93q0-1.102-.826-1.102-.838 0-.838 1.103l-.01 1.102H7.507V6.063q0-2.204 3.263-2.204h1.113q3.352 0 3.363 2.204l-.022 9.371h-2.757v-.551q-.264.827-1.918.827-3.318 0-3.318-2.205v-2.48q0-1.93 3.032-1.93zm.826 1.93q-.826 0-.826 1.102v.264q0 1.114.826 1.114h.276q.783 0 .827-1.114v-1.367zM16.316 0h3.032v15.434h-3.032zM20.461 0h3.032v15.434H20.46zM30.736 3.87q-.254-.056-.54-.078l1.41-1.973zm-4.31 11.829q.264.055.573.088l-1.4 1.962zm4.2-11.72q1.973.398 1.973 2.084v7.442q0 2.205-3.296 2.205h-1.378q-.441 0-.816-.033l4.663-6.582h-3.307zm-4.09 11.61q-1.93-.409-1.93-2.084V6.063q0-2.204 3.285-2.204h1.356q.452 0 .838.044l-4.928 6.846h3.308zM38.651 15.434v-.551q-.275.827-1.929.827-3.032 0-3.032-2.205v-9.37h3.032v8.267q0 1.103.783 1.103h.275q.86 0 .871-1.103V4.134h3.032v11.3zM43.26 4.134V1.102L46.29 0v4.134h1.654v1.378H46.29v6.89q0 1.103.827 1.103h.827v2.205H46.29q-3.032 0-3.032-2.205V5.512h-1.102V4.134zM51.792 9.095h1.93V3.032zM56.753 0v9.095h1.654V11.3h-1.654v4.134h-3.032V11.3h-4.685V9.095L51.792 0z"/> <path class="ray" d="M25.598 17.75l6.174-8.655h-3.307l3.142-7.276-6.45 8.93h3.308z"/>
</svg> <script src="js/index.js"></script>
</body>
</html>

Fallout 4 - Logo screen - Script Codes CSS Codes

body { background:#000;
}
.fallout4 { display:block; width:640px; margin:75px auto; border:6px solid #000; padding:20px 25px 10px 25px; border-radius:25px; -webkit-animation:appears 4s linear 10s forwards, blinkon 0.2s linear 16s alternate forwards, switchon 0.2s linear 16s forwards, finalblink 0.2s linear 25s forwards 4, finalblink 0.4s linear 26s forwards 3 reverse, stable 1s linear 27s forwards; animation:appears 4s linear 10s forwards, blinkon 0.2s linear 16s alternate forwards, switchon 0.2s linear 16s forwards, finalblink 0.2s linear 25s forwards 4, finalblink 0.4s linear 26s forwards 3 reverse, stable 1s linear 27s forwards;
}
.ray { fill:#000; -webkit-transform-origin:50% 50%; transform-origin:50% 50%; -webkit-animation:blink 6s cubic-bezier(.26,.84,.81,1.45) 2s forwards, switchon-ray 0.2s linear 16s forwards; animation:blink 6s cubic-bezier(.26,.84,.81,1.45) 2s forwards, switchon-ray 0.2s linear 16s forwards;
}
@-webkit-keyframes appears { 0% { fill:#000; border-color:#000; -webkit-transform:skew(0); transform:skew(0); } 100% { fill:#666; border-color:#666; -webkit-transform:skew(-15deg); transform:skew(-15deg); }
}
@keyframes appears { 0% { fill:#000; border-color:#000; -webkit-transform:skew(0); transform:skew(0); } 100% { fill:#666; border-color:#666; -webkit-transform:skew(-15deg); transform:skew(-15deg); }
}
@-webkit-keyframes blink { 1%, 7%, 11%, 19%, 24%, 39%, 52%, 62%, 84%, 67%, 75%, 83%, 86% { fill:#000; } 0%, 6%, 10%, 18%, 22%, 38%, 50%, 61%, 66%, 73%, 82%, 84%, 95% { fill:#393900; }
}
@keyframes blink { 1%, 7%, 11%, 19%, 24%, 39%, 52%, 62%, 84%, 67%, 75%, 83%, 86% { fill:#000; } 0%, 6%, 10%, 18%, 22%, 38%, 50%, 61%, 66%, 73%, 82%, 84%, 95% { fill:#393900; }
}
@-webkit-keyframes blinkon { 0% { -webkit-filter:drop-shadow(0 0 0 #191a00); filter:drop-shadow(0 0 0 #191a00); } 100% { -webkit-filter:drop-shadow(0px 0px 10px #dce810); filter:drop-shadow(0px 0px 10px #dce810); }
}
@keyframes blinkon { 0% { -webkit-filter:drop-shadow(0 0 0 #191a00); filter:drop-shadow(0 0 0 #191a00); } 100% { -webkit-filter:drop-shadow(0px 0px 10px #dce810); filter:drop-shadow(0px 0px 10px #dce810); }
}
@-webkit-keyframes switchon { 0% { fill:#666; } 100% { fill:#FFF; border-color:#FFF }
}
@keyframes switchon { 0% { fill:#666; } 100% { fill:#FFF; border-color:#FFF }
}
@-webkit-keyframes switchon-ray { 0% { fill:#000 } 100% { fill:#e1ed00 }
}
@keyframes switchon-ray { 0% { fill:#000 } 100% { fill:#e1ed00 }
}
@-webkit-keyframes finalblink { 0%, 30%, 80% { opacity:1 } 25%, 75% { opacity:0.5 }
}
@keyframes finalblink { 0%, 30%, 80% { opacity:1 } 25%, 75% { opacity:0.5 }
}
@-webkit-keyframes stable { 0% { opacity:0.5 } 100% { opacity:1 }
}
@keyframes stable { 0% { opacity:0.5 } 100% { opacity:1 }
}

Fallout 4 - Logo screen - Script Codes JS Codes

var fo4 = new Audio("https://cdn.rawgit.com/ManzDev/cursos-assets/gh-pages/js/fo4.mp3");
var pulse = new Audio("https://cdn.rawgit.com/ManzDev/cursos-assets/gh-pages/js/pulse.mp3");
fo4.play();
setTimeout(function() { pulse.play();
}, 16000)
Fallout 4 - Logo screen - Script Codes
Fallout 4 - Logo screen - Script Codes
Home Page Home
Developer Manz
Username manz
Uploaded January 18, 2023
Rating 3
Size 2,929 Kb
Views 10,120
Do you need developer help for Fallout 4 - Logo screen?

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!

Manz (manz) Script Codes
Create amazing web content 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!