3d rotating text css

Solutions on MaxInterview for 3d rotating text css by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "3d rotating text css"
Isabell
04 Oct 2019
1#spinner {
2  animation-name: spinner;
3  animation-timing-function: linear;
4  animation-iteration-count: infinite;
5  animation-duration: 3s;
6  transform-style: preserve-3d;
7  text-align:center;
8}
9@keyframes spinner {
10  from {
11    transform: rotateY(0deg);
12  }
13  to {
14    transform: rotateY(-360deg);
15  }
16}