# 图片360度旋转

.noDataImg{
	    -webkit-transform: rotate(360deg);
	    animation: rotation 3s linear infinite;
	    -moz-animation: rotation 3s linear infinite;
	    -webkit-animation: rotation 3s linear infinite;
	    -o-animation: rotation 3s linear infinite;
	  }
@-webkit-keyframes rotation{
	    from {-webkit-transform: rotate(0deg);}
	    to {-webkit-transform: rotate(360deg);}
	  }
	  
<img class="noDataImg" src="favicon.ico" />

1
2
3
4
5
6
7
8
9
10
11
12
13
14