Net magazine example - Start

Developer
Size
4,830 Kb
Views
32,384

How do I make an net magazine example - start?

An animated modal confirmation for a fictious cat cafe. Our starting point for the netmag Design Interface Animations article. It's not much yet, we're going to make some big improvement in the next three steps :). What is a net magazine example - start? How do you make a net magazine example - start? This script and codes were developed by Val Head on 07 August 2022, Sunday.

Net magazine example - Start Previews

Net magazine example - Start - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>net magazine example - Start</title> <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! */ /* Go go google fonts! */
@import url(http://fonts.googleapis.com/css?family=Roboto+Condensed:400,300|Lato:300,400);
/* Miles and miles of style */
body { background: #855082 url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/13034/graidlight.jpg"); background-size: cover; font-family: 'Lato', sans-serif; line-height: 1.4; font-weight: 300; margin: 3em 0;
}
section { width: 500px; margin: auto;
}
.card { background: rgba(255, 255, 255, 0.9); font-family: 'Roboto Condensed', sans-serif; padding: .5em 2em; border-radius: 4px; box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.03), 0px 1px 2px 0px rgba(0, 0, 0, 0.3); margin: auto; width: 430px; height: 250px;
}
.inner { margin: 2em 0 4em 0;
}
h2 { color: #CB326F; font-family: 'Roboto Condensed', sans-serif; font-size: 40px; font-size: 2rem; font-weight: 300; margin: 0 0 .15em 0;
}
h3 { margin: 0 0 .5em 0;
}
p { margin: 0; color: #666666;
}
.icon-space { margin-top: -30px;
}
.icon-space img { border-radius: 50%; display: block; margin: auto; border: 4px solid white; width: 100px; height: 100px; box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.03), 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
}
button { width: auto; height: 40px; display: block; margin: 80px auto; padding: 0 5%; border: none; border-radius: 4px; background-color: #1A9DB4; color: whitesmoke; font-size: 1em; font-family: 'Lato', sans-serif; font-weight: 300; box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.03), 0px 1px 2px 0px rgba(0, 0, 0, 0.3); transition: background-color .3s ease-out;
}
button:hover { background-color: #CB326F;
}
section { animation: slideIn 0.85s 0.5s ease-out both, fadeIn 0.25s 0.5s ease-in both;
}
button { animation: fadeIn 0.3s 1.5s ease-out both;
}
@keyframes slideIn { from { transform: translateY(400px); } to { transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opaticy: 1; }
}
/* This bit is just for the credits, nothing related to the example */
.credits { background: #131313; color: whitesmoke; width: 100%; height: 2em; padding: 1em 0 2em 0; margin: 0; position: absolute; left: 0; bottom: 0;
}
.credits p { text-align: center; margin: .5em 1em;
}
.credits a { color: #D0419F;
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <section>
<div class="card"> <div class="inner"> <div class="info"> <h2>Your Reservation is complete!</h2> <h3>2pm Saturday March 14th</h3> <p>The cats at Miss Mittens’ Cat Cafe are ready to welcome you and your guest for lunch. It will be a purrrfect afternoon. </p> </div> </div> <div class="icon-space"> <img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/13034/cyril-small_copy.jpg"/> </div>
</div>
<button>Make another reservation</button>
</section>
<!-- just some credits -->
<div class="credits"> <p>Step 1 of 4 for <a href="http://www.creativebloq.com/web-design/get-crash-course-motion-design-latest-issue-net-mag-21514216"> Design Interface Animations</a> in net magazine April 2015. More UI animation talk at: <a href="http://twitter.com/vlh">@vlh</a> and <a href="http://valhead.com/?utm_source=codepen&utm_medium=example&utm_campaign=netmagcp">valhead.com</a></p> </div>
</body>
</html>

Net magazine example - Start - Script Codes CSS Codes

/* Go go google fonts! */
@import url(http://fonts.googleapis.com/css?family=Roboto+Condensed:400,300|Lato:300,400);
/* Miles and miles of style */
body { background: #855082 url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/13034/graidlight.jpg"); background-size: cover; font-family: 'Lato', sans-serif; line-height: 1.4; font-weight: 300; margin: 3em 0;
}
section { width: 500px; margin: auto;
}
.card { background: rgba(255, 255, 255, 0.9); font-family: 'Roboto Condensed', sans-serif; padding: .5em 2em; border-radius: 4px; box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.03), 0px 1px 2px 0px rgba(0, 0, 0, 0.3); margin: auto; width: 430px; height: 250px;
}
.inner { margin: 2em 0 4em 0;
}
h2 { color: #CB326F; font-family: 'Roboto Condensed', sans-serif; font-size: 40px; font-size: 2rem; font-weight: 300; margin: 0 0 .15em 0;
}
h3 { margin: 0 0 .5em 0;
}
p { margin: 0; color: #666666;
}
.icon-space { margin-top: -30px;
}
.icon-space img { border-radius: 50%; display: block; margin: auto; border: 4px solid white; width: 100px; height: 100px; box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.03), 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
}
button { width: auto; height: 40px; display: block; margin: 80px auto; padding: 0 5%; border: none; border-radius: 4px; background-color: #1A9DB4; color: whitesmoke; font-size: 1em; font-family: 'Lato', sans-serif; font-weight: 300; box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.03), 0px 1px 2px 0px rgba(0, 0, 0, 0.3); transition: background-color .3s ease-out;
}
button:hover { background-color: #CB326F;
}
section { animation: slideIn 0.85s 0.5s ease-out both, fadeIn 0.25s 0.5s ease-in both;
}
button { animation: fadeIn 0.3s 1.5s ease-out both;
}
@keyframes slideIn { from { transform: translateY(400px); } to { transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opaticy: 1; }
}
/* This bit is just for the credits, nothing related to the example */
.credits { background: #131313; color: whitesmoke; width: 100%; height: 2em; padding: 1em 0 2em 0; margin: 0; position: absolute; left: 0; bottom: 0;
}
.credits p { text-align: center; margin: .5em 1em;
}
.credits a { color: #D0419F;
}
Net magazine example - Start - Script Codes
Net magazine example - Start - Script Codes
Home Page Home
Developer Val Head
Username valhead
Uploaded August 07, 2022
Rating 3
Size 4,830 Kb
Views 32,384
Do you need developer help for Net magazine example - Start?

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!

Val Head (valhead) Script Codes
Create amazing marketing copy 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!