jquery - Fullscreen spinning background image -


i've been looking everywhere how achieve effect of animated spinning image covering whole screen. like one.

bassically, want make spin , fullscreen.

this got far, http://losmosca.com.ar/reiki/

html:

<img src="img/bg.jpg" id='test' class='rotating'> 

css3:

#test { position:relative; margin:0 auto; width:1000px; height:1000px; }  @-webkit-keyframes rotating {      from{         -webkit-transform: rotate(0deg);      }      to{         -webkit-transform: rotate(360deg);      } }  .rotating {     -webkit-animation: rotating 1000s linear infinite; } 

as can see, can make spin not fullscreen, possible? thank you!

try using width:100%; rather width:1000px;

and height:100% rather height:1000px;

cool effect way, may have find excuse use trick.


Comments

Popular posts from this blog

Hatching array of circles in AutoCAD using c# -

ios - UITEXTFIELD InputView Uipicker not working in swift -

Python Pig Latin Translator -