How does google do the barrel roll?

后端 未结 8 1790
不思量自难忘°
不思量自难忘° 2021-01-31 02:29

If you Google, \'do a barrel roll\', the whole page does a 360 rotation. Does anyone have any guesses as to how Google is doing this? I disabled javascript, and it still occurre

8条回答
  •  没有蜡笔的小新
    2021-01-31 03:11

    if you want infinite

     @-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
     @-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
     @keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
     body{-webkit-animation: spin 9.9s infinite linear;}
    

提交回复
热议问题