❤️ Creative Tim Club - Access all our Present & Future Premium Products

Cards Snippet

Product description


We found that sometimes when we work at different websites, we want to show a lot of information in a small container. So...how can we keep a presentation card usable and beautiful when you have too much information? With the modern CSS3 3D transitions, we can make the web even more interesting.

Did you know that we can have more than 1 dimension on the web pages? If not, this is a very good starting point for you to understand how the CSS3 3D transitions are working. Since this effect resembles the action of flipping a card, it surprises the user in a nice way, while keeping the experience natural.

For this item we used Bootstrap for the 12-col grid. It helps us to keep the rotating cards responsive for any devices.

We created the design for the both faces of the card and a container-card that will let the card perform the 3D rotating action.

You can use this rotating CSS card for presentations of your team or for showing more information about the users from your platform.  We're sure you can find many other use cases for it and we would like to see them all! Just add a link in the comments and we'll let you know what we think.

So rock your project with some awesome new effects. The users will be pleasantly surprised by them, for sure!

Product certified by: Creative Tim
Rotating CSS Card - Fully Coded and Responsive HTML5
Rotating CSS Card - Crafted with Bootstrap - the most popular Front End Framework
Downloads
33,605
Version
1.4.0
Changelog
Updated
8 years ago
Released
9 years ago
Reviews
Star
Handcrafted Elements
0
Customized Plugins
0
Example Pages
0
Community Support
Documentation
Fully Responsive

We are here to help you!

76 Web Developers commented on this product

bic.app 8 years ago

Please fix the manual flip behavior for IE. It is also broken in Windows Phone. Thanks!

cristina

We will have a look on IE, and come back with an update.
8 years ago

gautam.chaudhary
  • downloaded

@cristina any update on IE flip issue fix?
8 years ago

simren.arora
  • downloaded
8 years ago

how to make it rotate with iOS devices when clicked anywhere on card ?

simren.arora
  • downloaded
8 years ago

how to make it rotate with iOS devices when clicked anywhere on card ?

mn_srv
  • downloaded
8 years ago

So, Ive spent some time to fix the flip issue on IE for: a) Make it to work on manual flip when clicked only b) Making sure card flips correctly and rotate the content as well Here is the modified CSS code for anyone interested. This works on all modern browser included IE11 and 10. As you may know, CSS rotate is not support then on IE 9 and below. Enjoy: .col-md-4.col-sm-6.card-container-outer {} .btn:hover, .btn:focus, .btn:active { outline: 0 !important; } /* entire container, keeps perspective */ .card-container { -webkit-perspective: 800px; -moz-perspective: 800px; -o-perspective: 800px; perspective: 800px; margin-bottom: 30px; transform-style: preserve-3d; } /* flip the card when hovered */ .card-container:not(.manual-flip):hover .front, .card-container.hover.manual-flip .front{ -webkit-transform: rotateY(180deg); -moz-transform: rotateY(180deg); -o-transform: rotateY(180deg); transform: rotateY(180deg); } .card-container:not(.manual-flip):hover .back, .card-container.hover.manual-flip .back { -webkit-transform: rotateY(0deg); -moz-transform: rotateY(0deg); -o-transform: rotateY(0deg); transform: rotateY(0deg); } /* Control 3D animation and flip's speed */ .card { -webkit-transition: -webkit-transform 1.2s; -moz-transition: -moz-transform 1.2s; -o-transition: -o-transform 1.2s; -ms-transition: all 1.2s cubic-bezier(.92, .01, .83, .67); transition: transform 1.2s; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; -o-transform-style: preserve-3d; transform-style: preserve-3d; position: relative; } /* hide back of the card during transition */ .front, .back { -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -o-backface-visibility: hidden; -ms-backface-visibility: hidden; backface-visibility: hidden; transition: 1.2s; transform-style: preserve-3d; position: absolute; top: 0; left: 0; } /* front card by default should be placed on front of the back card */ .front { z-index: 2; transform: rotateY(0deg); } /* back card, initially hidden pane */ .back { -webkit-transform: rotateY(-180deg); -moz-transform: rotateY(-180deg); -o-transform: rotateY(-180deg); transform: rotateY(-180deg); /*z-index: 3;*/ }

budaraju08
  • downloaded

I try ed to do like this but till i'm getting same error.... how can i
8 years ago

edwin.merced
  • downloaded
8 years ago

Is it possible to time the rotation? For example, a rotation of the card every 10 seconds.

alexpaduraru
  • owner

@edwin.merced of course you can do this, use this javascript -> is_flipped = 0; setInterval(function(){ if(is_flipped == 0){ $('.card').parent().addClass('manual-flip hover'); is_flipped = 1; } else { $('.card').parent().removeClass('manual-flip hover'); is_flipped = 0; } },10000);
8 years ago

zeca.rocha
  • downloaded
8 years ago

Hi, I am noticing a strange behavior when I add new rows on the site. Please see the result of nonalignment of cards on this image https://flic.kr/p/xRr7zM

alexpaduraru
  • owner

@zeca.rocha can you give me the link to the website? I have to check how the grid is acting. Thank you!
8 years ago

zeca.rocha
  • downloaded
8 years ago

@alexpaduraru I haven't published on any web server. What do you think if I upload it on github?

alexpaduraru
  • owner

Yes, upload it on github and give us the link
8 years ago

zeca.rocha
  • downloaded
8 years ago

@alexpaduraru Take a look on https://github.com/ezequias/pensemagro

alexpaduraru
  • owner

Please add all the divs with the class="col-sm-10" inside the div with class="container". If you look with inspect element in chrome you will see that there are a lot of divs outside the container.
8 years ago

alexpaduraru
  • owner

We sent you an email with the fixed divs.
8 years ago

zeca.rocha
  • downloaded
8 years ago

Thank you so much @alexpaduraru your advice was very good. The problem I created was solved.

u
  • downloaded
8 years ago

Anyone please tell me the fix for manual flip behavior in IE ... its important

You have to be logged in to post a comment. Login here.