
Tag: CSS Animations
All posts related to CSS animations. Find more CSS tools here – https://tools.webdevpuneet.com/


Color Blinking – CSS Animation
Color Blinking – CSS Animation This is a simple example of how to create CSS animations. You can use any CSS property inside the {} curly braces to get desired effects. Demo Open demo in a full window –...
Flip and Click Cards using jQuery and CSS
Flip and Click Cards Here is an HTML template with a demo for flip and click cards. I have used jQuery for the active state and worked on CSS to transform rotate the card. After rotation user can see the associated text can click on it to go to the associated URL....
Flip animation with two images on opposite sides
/* Banner Image Flip */ @-webkit-keyframes move1 { 0% { transform: rotate3d(0, 1, 0, 0deg); opacity: 1; } 10% { transform: rotate3d(0, 1, 0, 90deg); opacity: 0; } 50% { transform: rotate3d(0, 1, 0, 90deg); opacity: 0; } 60% { transform: rotate3d(0, 1, 0, 0deg);...