Launch Sign up form

Size
5,586 Kb
Views
56,672

How do I make an launch sign up form?

Launch Graphic with parallax hover, pulsating button, and launch animated text. Built for a section on a product launch page. to house the signup form. Besides, who doesn't want to click a big ol' red button?. What is a launch sign up form? How do you make a launch sign up form? This script and codes were developed by Hans Engebretsen on 09 August 2022, Tuesday.

Launch Sign up form Previews

Launch Sign up form - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Launch Sign up form</title> <script src="http://s.codepen.io/assets/libs/modernizr.js" type="text/javascript"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <style> /* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */ @import url(http://fonts.googleapis.com/css?family=Varela|Roboto:400,100,700);
* { box-sizing: border-box;
}
body { font-family: 'Roboto', 'sans-serif'; font-weight: 100; font-size: 2em;
}
.container, .container:after, .container:before, .sign-up { transition: all .5s ease-in-out;
}
.container { width: 100%; height: 400px; background: url("http://31.media.tumblr.com/86905a26349fe508ddfa9614fcc42d89/tumblr_n3vuzrEjDJ1sfie3io1_1280.jpg"); background-position: left 40%; background-repeat: no-repeat; background-size: 115%; position: relative; text-align: center;
}
.container:hover { background-position: 15% 40%;
}
.container:hover:before { background-color: rgba(0, 0, 0, 0.6);
}
.container:hover .text, .container:hover .sign-up { transform: translateY(-15px);
}
.container:hover:after { margin-top: -91.5px;
}
.container:before { content: ""; width: 100%; height: 100%; position: absolute; top: 0; left: 0; background-color: rgba(0, 0, 0, 0.7);
}
.container:after { content: ""; position: absolute; left: 50%; margin-top: -74.5px; margin-left: -1.04em; z-index: 0; height: 2em; width: 2em; display: inline-block; box-shadow: inset 0 0 30px white; border-radius: 120%; animation: pulsate 3s infinite ease-out; border: 0.05em solid rgba(255, 255, 255, 0.9);
}
.text { display: block; position: relative; padding-top: 120px; text-shadow: 2px 2px rgba(0, 0, 0, 0.3); color: white; font-size: 1.8em; transition: all .5s ease-in-out; z-index: 2;
}
.sign-up { border-radius: 50%; cursor: pointer; font-size: .2em; width: 7em; height: 7em; display: inline-block; position: relative; padding: .55em; box-shadow: 0 0 8em rgba(255, 255, 255, 0.25), 0 0 8em rgba(255, 255, 255, 0.25), 0 0 0.25em rgba(0, 0, 0, 0.3), inset 0 0.25em 0.125em rgba(255, 255, 255, 0.3), inset 0 -0.25em 0.125em rgba(0, 0, 0, 0.3); z-index: 200; background: #cc0000;
}
.sign-up:active { box-shadow: 0 0 0.5em black, inset 0 0.1em 0.3em rgba(0, 0, 0, 0.5), inset 0 -0.1em 0.3em rgba(0, 0, 0, 0.5);
}
.blast-off { animation: blast-off 4s linear; top: -5000px;
}
.email-input { width: 250px; padding: 10px 20px; margin-left: -125px; position: absolute; bottom: 100px; left: 50%; border: none; background: rgba(255, 255, 255, 0.7); border-radius: 3px; border-bottom: 5px solid #990000; font-size: .65em; opacity: 0; visibility: hidden; transition: all 400ms 1s, visibility 0s 1s;
}
.email-input.active { visibility: visible; opacity: 1; transform: translateY(-125px);
}
@keyframes pulsate { 0% { transform: scale(0.8); opacity: .3; } 100% { transform: scale(1.3); opacity: 0; }
}
@keyframes blast-off { 0%, 100% { top: 0px; left: 0px; } 1% { top: 2px; left: 2px; } 2% { top: -2px; left: 2px; } 3% { top: 4px; left: -2px; } 4% { top: 4px; left: 0px; } 5% { top: -3px; left: -2px; } 6% { top: 4px; left: 5px; } 7% { top: -4px; left: 7px; } 8% { top: 5px; left: -8px; } 9% { top: -4px; left: 6px; } 10% { top: 3px; left: -9px; } 11% { top: 9px; left: -5px; } 12% { top: 2px; left: 5px; } 99% { top: -5000px; left: 0px; }
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <section class="container"> <span class="text">Be a part of the launch</span> <div class="sign-up"></div> <input type="text" class="email-input" placeholder="[email protected]"class="email" />
</section> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Launch Sign up form - Script Codes CSS Codes

@import url(http://fonts.googleapis.com/css?family=Varela|Roboto:400,100,700);
* { box-sizing: border-box;
}
body { font-family: 'Roboto', 'sans-serif'; font-weight: 100; font-size: 2em;
}
.container, .container:after, .container:before, .sign-up { transition: all .5s ease-in-out;
}
.container { width: 100%; height: 400px; background: url("http://31.media.tumblr.com/86905a26349fe508ddfa9614fcc42d89/tumblr_n3vuzrEjDJ1sfie3io1_1280.jpg"); background-position: left 40%; background-repeat: no-repeat; background-size: 115%; position: relative; text-align: center;
}
.container:hover { background-position: 15% 40%;
}
.container:hover:before { background-color: rgba(0, 0, 0, 0.6);
}
.container:hover .text, .container:hover .sign-up { transform: translateY(-15px);
}
.container:hover:after { margin-top: -91.5px;
}
.container:before { content: ""; width: 100%; height: 100%; position: absolute; top: 0; left: 0; background-color: rgba(0, 0, 0, 0.7);
}
.container:after { content: ""; position: absolute; left: 50%; margin-top: -74.5px; margin-left: -1.04em; z-index: 0; height: 2em; width: 2em; display: inline-block; box-shadow: inset 0 0 30px white; border-radius: 120%; animation: pulsate 3s infinite ease-out; border: 0.05em solid rgba(255, 255, 255, 0.9);
}
.text { display: block; position: relative; padding-top: 120px; text-shadow: 2px 2px rgba(0, 0, 0, 0.3); color: white; font-size: 1.8em; transition: all .5s ease-in-out; z-index: 2;
}
.sign-up { border-radius: 50%; cursor: pointer; font-size: .2em; width: 7em; height: 7em; display: inline-block; position: relative; padding: .55em; box-shadow: 0 0 8em rgba(255, 255, 255, 0.25), 0 0 8em rgba(255, 255, 255, 0.25), 0 0 0.25em rgba(0, 0, 0, 0.3), inset 0 0.25em 0.125em rgba(255, 255, 255, 0.3), inset 0 -0.25em 0.125em rgba(0, 0, 0, 0.3); z-index: 200; background: #cc0000;
}
.sign-up:active { box-shadow: 0 0 0.5em black, inset 0 0.1em 0.3em rgba(0, 0, 0, 0.5), inset 0 -0.1em 0.3em rgba(0, 0, 0, 0.5);
}
.blast-off { animation: blast-off 4s linear; top: -5000px;
}
.email-input { width: 250px; padding: 10px 20px; margin-left: -125px; position: absolute; bottom: 100px; left: 50%; border: none; background: rgba(255, 255, 255, 0.7); border-radius: 3px; border-bottom: 5px solid #990000; font-size: .65em; opacity: 0; visibility: hidden; transition: all 400ms 1s, visibility 0s 1s;
}
.email-input.active { visibility: visible; opacity: 1; transform: translateY(-125px);
}
@keyframes pulsate { 0% { transform: scale(0.8); opacity: .3; } 100% { transform: scale(1.3); opacity: 0; }
}
@keyframes blast-off { 0%, 100% { top: 0px; left: 0px; } 1% { top: 2px; left: 2px; } 2% { top: -2px; left: 2px; } 3% { top: 4px; left: -2px; } 4% { top: 4px; left: 0px; } 5% { top: -3px; left: -2px; } 6% { top: 4px; left: 5px; } 7% { top: -4px; left: 7px; } 8% { top: 5px; left: -8px; } 9% { top: -4px; left: 6px; } 10% { top: 3px; left: -9px; } 11% { top: 9px; left: -5px; } 12% { top: 2px; left: 5px; } 99% { top: -5000px; left: 0px; }
}

Launch Sign up form - Script Codes JS Codes

$(document).ready(function(){ $('.sign-up').on('click', function(){ $('.text').addClass('blast-off'); $('.email-input').addClass('active'); });
});
Launch Sign up form - Script Codes
Launch Sign up form - Script Codes
Home Page Home
Developer Hans Engebretsen
Username hans
Uploaded August 09, 2022
Rating 3
Size 5,586 Kb
Views 56,672
Do you need developer help for Launch Sign up form?

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!

Hans Engebretsen (hans) 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!