1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
| @keyframes spin { 0% { transform: rotate(0deg); -webkit-transform: rotate(0deg); }
100% { transform: rotate(360deg); -webkit-transform: rotate(360deg); } }
@-webkit-keyframes spin { 0% { transform: rotate(0deg); -webkit-transform: rotate(0deg); }
100% { transform: rotate(360deg); -webkit-transform: rotate(360deg); } }
@keyframes spinoff { 0% { transform: rotate(0deg); -webkit-transform: rotate(0deg); }
100% { transform: rotate(-360deg); -webkit-transform: rotate(-360deg); } }
@-webkit-keyframes spinoff { 0% { transform: rotate(0deg); -webkit-transform: rotate(0deg); }
100% { transform: rotate(-360deg); -webkit-transform: rotate(-360deg); } }
body { margin: 0; }
.content { width: 100px; height: 100px; position: relative; margin: 10% auto 0 auto; }
.content .ball { top: 25px; left: 25px; width: 50px; height: 50px; position: absolute; border-radius: 50px; -webkit-border-radius: 50px; border: 5px solid rgba(40,40,200,0.5); border-left: 5px solid rgba(255,255,255,0.7); border-top: 5px solid rgba(255,255,255,0.7); box-shadow: 2px 2px 4px 0 rgba(40,40,200,0.4); animation: spin .5s linear infinite; -webkit-animation: spin .5s linear infinite; }
.content .ball1 { top: 35px; left: 35px; width: 30px; height: 30px; position: absolute; border-radius: 30px; -webkit-border-radius: 30px; border: 5px solid rgba(40,40,200,0.8); border-left: 5px solid rgba(255,255,255,1.0); border-top: 5px solid rgba(255,255,255,1.0); box-shadow: 2px 2px 4px 0 rgba(40,40,200,0.4); animation: spinoff .5s linear infinite; -webkit-animation: spinoff .5s linear infinite; }
|