Another intro

Developer
Size
4,763 Kb
Views
38,456

How do I make an another intro?

What is a another intro? How do you make a another intro? This script and codes were developed by Moncho Varela on 07 July 2022, Thursday.

Another intro Previews

Another intro - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Another intro</title> <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! */ body{ position:relative; height:100%; overflow:hidden;
}
.main { display: block; background: #FFF; color: #555; font-family: monospace; padding: 1em;
}
.enter{ position:fixed; top:0; left:0; background:url(http://24.media.tumblr.com/f74ff1d9acdf8c43cd1897e01bc669e6/tumblr_n2k114hDQX1st5lhmo1_1280.jpg) no-repeat center center fixed; -webkit-background-size:/*@@prefixmycss->No equivalent*/; -moz-background-size:cover; -o-background-size:/*@@prefixmycss->No equivalent*/; background-size:cover; display:block; width:100%; height:100%; -webkit-box-shadow:inset 0 0 0em 80em rgba(255, 255, 255, 0.78); -moz-box-shadow:inset 0 0 0em 80em rgba(255, 255, 255, 0.78); box-shadow:inset 0 0 0em 80em rgba(255, 255, 255, 0.78);
}
.enter_btn{ position:absolute; top:0; left:0; width:100%; margin:20% auto; text-align:center; font-family:monospace; text-decoration:none; text-transform:capitalize; font-size:2.2em; color:#646464; text-shadow:0 -1000px 30px #F02820; -webkit-transition:all 2s ease-in-out; -moz-transition:all 2s ease-in-out; -o-transition:all 2s ease-in-out; transition:all 2s ease-in-out; -webkit-animation:textShadow 2s 1 ease; -moz-animation:textShadow 2s 1 ease; -ms-animation:textShadow 2s 1 ease; -o-animation:textShadow 2s 1 ease; animation:textShadow 2s 1 ease;
}
.enter_btn:hover{ text-shadow: 0 1px 1px #333; color:#f55; -webkit-transition:all 2s ease-in-out; -moz-transition:all 2s ease-in-out; -o-transition:all 2s ease-in-out; transition:all 2s ease-in-out;
}
@-webkit-keyframes textShadow{0%{color:white;}}
@-moz-keyframes textShadow{0%{color:white;}}
@-o-keyframes textShadow{0%{color:white;}}
@-ms-keyframes textShadow{0%{color:white;}}
@keyframes textShadow{0%{color:white;}}
.divider{ position:absolute; top:0; left:0; width:100%; background:#A7A7A7; height:1px; margin:25% auto; -webkit-animation:thiswidth 5s ease; -moz-animation:thiswidth 5s ease; -ms-animation:thiswidth 5s ease; -o-animation:thiswidth 5s ease; animation:thiswidth 5s ease;
}
@-webkit-keyframes thiswidth{0%{width:0%;}}
@-moz-keyframes thiswidth{0%{width:0%;}}
@-o-keyframes thiswidth{0%{width:0%;}}
@-ms-keyframes thiswidth{0%{width:0%;}}
@keyframes thiswidth{0%{width:0%;}}
.copyright{ position:absolute; top:0; left:0; width:100%; margin:27% auto; text-align:center; font-family:monospace; text-transform:capitalize; color:#797777; -webkit-animation:thisshow 6s ease; -moz-animation:thisshow 6s ease; -ms-animation:thisshow 6s ease; -o-animation:thisshow 6s ease; animation:thisshow 6s ease;
}
@-webkit-keyframes thisshow{0%{color: #fff;}}
@-moz-keyframes thisshow{0%{color: #fff;}}
@-o-keyframes thisshow{0%{color: #fff;}}
@-ms-keyframes thisshow{0%{color: #fff;}}
@keyframes thisshow{0%{color: #fff;}}
.showme{ -webkit-box-shadow:inset 0 0 0em 0em white; -moz-box-shadow:inset 0 0 0em 0em white; box-shadow:inset 0 0 0em 0em white; -webkit-transition:all 2s ease-in-out; -moz-transition:all 2s ease-in-out; -o-transition:all 2s ease-in-out; transition:all 2s ease-in-out;
}
.hideme{ top:-200%; -webkit-transition:all 2s ease-in-out; -moz-transition:all 2s ease-in-out; -o-transition:all 2s ease-in-out; transition:all 2s ease-in-out;
}
/* demo */
pre,code { font-family: consolas, courier, monospace; white-space: pre; padding: 5px; margin:0; width: 98%;
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <div class="enter"> <a class="enter_btn" href="#">enter</a> <span class="divider"></span> <span class="copyright">Copyright &copy; 2014 Nakome</span>
</div>
<div class="main"> <h3>Javascript pattern experiment</h3> <pre><code class="language-javascript">
///////////////////////
// ----------------- //
// //
// Another intro //
// For //
// Codepen //
// //
// ----------------- //
///////////////////////
// js.run();
var js = (function(){ // strict mode 'use strict'; // return functions return { // console.log info info:{ 'debug': true, 'author':'Moncho Varela / Nakome', 'description':'Another intro experiment', 'date':'20/03/2014', 'url':'http://nakome.com' }, // Call functions here run: function(){ this.fns(); this.Copyright(); }, // run with this.debug(foo); debug: function(el){ if(typeof console != 'undefined') if(this.info.debug){console.clear();console.log('%c'+el,'color:blue;');} else{console.clear();} }, // functions fns: function(){ // Function for this intro $('.enter_btn').on('click',function(){ $('.enter').addClass('showme'); $('.enter_btn').animate({top: '-200%'},500); $('.divider').delay(20).animate({left: '-200%'},800); $('.copyright').delay(30).animate({right: '-200%'},700); var time = setTimeout(function(){ $('.enter').addClass('hideme'); $('body').css('overflow','auto'); clearTimeout(time); },2000); }); }, // Show info in console log Copyright: function(){ // info template var copyright = 'Author: '+ this.info.author + '\n'+ 'Description: ' + this.info.description + '\n'+ 'Date: ' + this.info.date + '\n'+ 'Url: ' + this.info.url; // run in console.log this.debug(copyright); } }; // end of return
}).call(this);
// Call functions
js.run();
</code></pre>
</div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Another intro - Script Codes CSS Codes

body{ position:relative; height:100%; overflow:hidden;
}
.main { display: block; background: #FFF; color: #555; font-family: monospace; padding: 1em;
}
.enter{ position:fixed; top:0; left:0; background:url(http://24.media.tumblr.com/f74ff1d9acdf8c43cd1897e01bc669e6/tumblr_n2k114hDQX1st5lhmo1_1280.jpg) no-repeat center center fixed; -webkit-background-size:/*@@prefixmycss->No equivalent*/; -moz-background-size:cover; -o-background-size:/*@@prefixmycss->No equivalent*/; background-size:cover; display:block; width:100%; height:100%; -webkit-box-shadow:inset 0 0 0em 80em rgba(255, 255, 255, 0.78); -moz-box-shadow:inset 0 0 0em 80em rgba(255, 255, 255, 0.78); box-shadow:inset 0 0 0em 80em rgba(255, 255, 255, 0.78);
}
.enter_btn{ position:absolute; top:0; left:0; width:100%; margin:20% auto; text-align:center; font-family:monospace; text-decoration:none; text-transform:capitalize; font-size:2.2em; color:#646464; text-shadow:0 -1000px 30px #F02820; -webkit-transition:all 2s ease-in-out; -moz-transition:all 2s ease-in-out; -o-transition:all 2s ease-in-out; transition:all 2s ease-in-out; -webkit-animation:textShadow 2s 1 ease; -moz-animation:textShadow 2s 1 ease; -ms-animation:textShadow 2s 1 ease; -o-animation:textShadow 2s 1 ease; animation:textShadow 2s 1 ease;
}
.enter_btn:hover{ text-shadow: 0 1px 1px #333; color:#f55; -webkit-transition:all 2s ease-in-out; -moz-transition:all 2s ease-in-out; -o-transition:all 2s ease-in-out; transition:all 2s ease-in-out;
}
@-webkit-keyframes textShadow{0%{color:white;}}
@-moz-keyframes textShadow{0%{color:white;}}
@-o-keyframes textShadow{0%{color:white;}}
@-ms-keyframes textShadow{0%{color:white;}}
@keyframes textShadow{0%{color:white;}}
.divider{ position:absolute; top:0; left:0; width:100%; background:#A7A7A7; height:1px; margin:25% auto; -webkit-animation:thiswidth 5s ease; -moz-animation:thiswidth 5s ease; -ms-animation:thiswidth 5s ease; -o-animation:thiswidth 5s ease; animation:thiswidth 5s ease;
}
@-webkit-keyframes thiswidth{0%{width:0%;}}
@-moz-keyframes thiswidth{0%{width:0%;}}
@-o-keyframes thiswidth{0%{width:0%;}}
@-ms-keyframes thiswidth{0%{width:0%;}}
@keyframes thiswidth{0%{width:0%;}}
.copyright{ position:absolute; top:0; left:0; width:100%; margin:27% auto; text-align:center; font-family:monospace; text-transform:capitalize; color:#797777; -webkit-animation:thisshow 6s ease; -moz-animation:thisshow 6s ease; -ms-animation:thisshow 6s ease; -o-animation:thisshow 6s ease; animation:thisshow 6s ease;
}
@-webkit-keyframes thisshow{0%{color: #fff;}}
@-moz-keyframes thisshow{0%{color: #fff;}}
@-o-keyframes thisshow{0%{color: #fff;}}
@-ms-keyframes thisshow{0%{color: #fff;}}
@keyframes thisshow{0%{color: #fff;}}
.showme{ -webkit-box-shadow:inset 0 0 0em 0em white; -moz-box-shadow:inset 0 0 0em 0em white; box-shadow:inset 0 0 0em 0em white; -webkit-transition:all 2s ease-in-out; -moz-transition:all 2s ease-in-out; -o-transition:all 2s ease-in-out; transition:all 2s ease-in-out;
}
.hideme{ top:-200%; -webkit-transition:all 2s ease-in-out; -moz-transition:all 2s ease-in-out; -o-transition:all 2s ease-in-out; transition:all 2s ease-in-out;
}
/* demo */
pre,code { font-family: consolas, courier, monospace; white-space: pre; padding: 5px; margin:0; width: 98%;
}

Another intro - Script Codes JS Codes

/* // Function for intro $('.enter_btn').on('click',function(){ $('.enter').addClass('showme'); $('.enter_btn').animate({top: '-200%'},500); $('.divider').delay(20).animate({left: '-200%'},800); $('.copyright').delay(30).animate({right: '-200%'},700); var time = setTimeout(function(){ $('.enter').addClass('hideme'); $('body').css('overflow','auto'); clearTimeout(time); },2000); });
*/
///////////////////////
// ----------------- //
// //
// Another intro //
// For //
// Codepen //
// //
// ----------------- //
///////////////////////
// js.run();
var js = (function(){ // strict mode 'use strict'; // return functions return { // console.log info info:{ 'debug': true, 'author':'Moncho Varela / Nakome', 'description':'Another intro experiment', 'date':'20/03/2014', 'url':'http://nakome.com' }, // Call functions here run: function(){ this.fns(); this.Copyright(); }, // run with this.debug(foo); debug: function(el){ if(typeof console != 'undefined') if(this.info.debug){console.clear();console.log('%c'+el,'color:blue;');} else{console.clear();} }, // functions fns: function(){ // Function for intro $('.enter_btn').on('click',function(){ $('.enter').addClass('showme'); $('.enter_btn').animate({top: '-200%'},500); $('.divider').delay(20).animate({left: '-200%'},800); $('.copyright').delay(30).animate({right: '-200%'},700); var time = setTimeout(function(){ $('.enter').addClass('hideme'); $('body').css('overflow','auto'); clearTimeout(time); },2000); }); }, // Show info in console log Copyright: function(){ // info template var copyright = 'Author: '+ this.info.author + '\n'+ 'Description: ' + this.info.description + '\n'+ 'Date: ' + this.info.date + '\n'+ 'Url: ' + this.info.url; // run in console.log this.debug(copyright); } }; // end of return
}).call(this);
// Call functions
js.run();
Another intro - Script Codes
Another intro - Script Codes
Home Page Home
Developer Moncho Varela
Username nakome
Uploaded July 07, 2022
Rating 4.5
Size 4,763 Kb
Views 38,456
Do you need developer help for Another intro?

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!

Moncho Varela (nakome) Script Codes
Create amazing video scripts 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!