CSS Animated Bio Card

Developer
Size
4,004 Kb
Views
8,096

How do I make an css animated bio card?

Animated with CSS3 keyframes and animation.. What is a css animated bio card? How do you make a css animated bio card? This script and codes were developed by Assaf Gelber on 03 January 2023, Tuesday.

CSS Animated Bio Card Previews

CSS Animated Bio Card - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>CSS Animated Bio Card</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! */ @import url(https://fonts.googleapis.com/css?family=Roboto+Slab);
@import url(https://fonts.googleapis.com/css?family=Merriweather+Sans:300);
* { box-sizing: border-box;
}
body { background-color: #2C2D3D;
}
.card { width: 600px; margin: 40px auto; background-color: #F7F7E9; color: #444; overflow: hidden; box-shadow: 5px 5px 0 0 #aaa;
}
.card h1 { margin: 0; padding: 20px; text-align: center; font-family: Roboto Slab; font-weight: 400; background-color: #4DD65F; animation: fadein 1.2s;
}
.card img { float: left; width: 200px; height: 200px; margin: 20px; position: relative; z-index: 1; animation: grow 0.6s;
}
.card .bio { position: relative; margin: 20px; font-family: Merriweather Sans; animation: slidein 1.2s;
}
@keyframes fadein { from { color: transparent; } to { color: inherit; }
}
@keyframes grow { from { transform: scale(0); } 80% { transform: scale(1.1); } to { transform: scale(1); }
}
@keyframes slidein { from { opacity: 0; } 49.9% { opacity: 0; } 50% { left: -240px; } to { left: 0; }
}
.comment { font-family: Merriweather Sans; font-size: 12px; color: #ddd; text-align: center;
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <div class='card'> <h1> Luke Skywalker </h1> <img src='http://static.wix.com/media/9173d6_b6e7d7a2d6e92e1a1da9aefda77fa7d7.jpg_256'> <p class='bio'> Luke Skywalker was the son of Anakin Skywalker and Padmé Amidala, and the older twin brother of Leia Organa Solo. He was a Jedi Master and hero of the Galactic Civil War. A celebrated pilot and leader, Skywalker was most famous for destroying the first Death Star and prompting Darth Vader to kill Emperor Palpatine, which led to the eventual downfall of the Galactic Empire. </p>
</div>
<div class='comment'> If you didn't catch the animation, hit Cmd + Shift + 5 or refresh the page :)
</div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
</body>
</html>

CSS Animated Bio Card - Script Codes CSS Codes

@import url(https://fonts.googleapis.com/css?family=Roboto+Slab);
@import url(https://fonts.googleapis.com/css?family=Merriweather+Sans:300);
* { box-sizing: border-box;
}
body { background-color: #2C2D3D;
}
.card { width: 600px; margin: 40px auto; background-color: #F7F7E9; color: #444; overflow: hidden; box-shadow: 5px 5px 0 0 #aaa;
}
.card h1 { margin: 0; padding: 20px; text-align: center; font-family: Roboto Slab; font-weight: 400; background-color: #4DD65F; animation: fadein 1.2s;
}
.card img { float: left; width: 200px; height: 200px; margin: 20px; position: relative; z-index: 1; animation: grow 0.6s;
}
.card .bio { position: relative; margin: 20px; font-family: Merriweather Sans; animation: slidein 1.2s;
}
@keyframes fadein { from { color: transparent; } to { color: inherit; }
}
@keyframes grow { from { transform: scale(0); } 80% { transform: scale(1.1); } to { transform: scale(1); }
}
@keyframes slidein { from { opacity: 0; } 49.9% { opacity: 0; } 50% { left: -240px; } to { left: 0; }
}
.comment { font-family: Merriweather Sans; font-size: 12px; color: #ddd; text-align: center;
}
CSS Animated Bio Card - Script Codes
CSS Animated Bio Card - Script Codes
Home Page Home
Developer Assaf Gelber
Username agelber
Uploaded January 03, 2023
Rating 4.5
Size 4,004 Kb
Views 8,096
Do you need developer help for CSS Animated Bio Card?

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!

Assaf Gelber (agelber) Script Codes
Create amazing blog posts 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!