<style>
     html {
         background: pink;
         height: 100%;
     }
 
     /*最外层容器样式*/
     .wrap {
         width: 10px;
         height: 10px;
         /*改变左右上下,图片方块移动*/
         margin: 200px 400px;
         position: relative;
 
     }
 
     /*包裹所有容器样式*/
     .cube {
         width: 600px;
         height: 400px;
         margin: 0 auto;
         transform-style: preserve-3d;
         transform: rotateX(-30deg) rotateY(-80deg);
         -webkit-animation: rotate 20s infinite;
         /*匀速*/
         animation-timing-function: linear;
     }
 
     @-webkit-keyframes rotate {
         from {
             transform: rotateX(0deg) rotateY(0deg);
         }
 
         to {
             transform: rotateX(360deg) rotateY(360deg);
         }
     }
 
     .cube div {
         position: absolute;
         width: 300px;
         height: 300px;
         opacity: 0.8;
         transition: all .4s;
     }
 
     /*定义所有图片样式*/
     .pic {
         width: 300px;
         height: 300px;
     }
 
     .cube .out_front {
         transform: rotateY(0deg) translateZ(150px);
     }
 
     .cube .out_back {
         transform: translateZ(-150px) rotateY(180deg);
     }
 
     .cube .out_left {
         transform: rotateY(90deg) translateZ(150px);
     }
 
     .cube .out_right {
         transform: rotateY(-90deg) translateZ(150px);
     }
 
     .cube .out_top {
         transform: rotateX(90deg) translateZ(150px);
     }
 
     .cube .out_bottom {
         transform: rotateX(-90deg) translateZ(150px);
     }
 
     /*定义小正方体样式*/
     .cube span {
         display: bloack;
         width: 200px;
         height: 200px;
         position: absolute;
         top: 50px;
         left: 50px;
     }
 
     .cube .in_pic {
         width: 200px;
         height: 200px;
     }
 
     .cube .in_front {
         transform: rotateY(0deg) translateZ(100px);
     }
 
     .cube .in_back {
         transform: translateZ(-100px) rotateY(180deg);
     }
 
     .cube .in_left {
         transform: rotateY(90deg) translateZ(100px);
     }
 
     .cube .in_right {
         transform: rotateY(-90deg) translateZ(100px);
     }
 
     .cube .in_top {
         transform: rotateX(90deg) translateZ(100px);
     }
 
     .cube .in_bottom {
         transform: rotateX(-90deg) translateZ(100px);
     }
 
     /*鼠标移入后样式*/
     .cube:hover .out_front {
         transform: rotateY(0deg) translateZ(400px);
     }
 
     .cube:hover .out_back {
         transform: translateZ(-400px) rotateY(180deg);
     }
 
     .cube:hover .out_left {
         transform: rotateY(90deg) translateZ(400px);
     }
 
     .cube:hover .out_right {
         transform: rotateY(-90deg) translateZ(400px);
     }
 
     .cube:hover .out_top {
         transform: rotateX(90deg) translateZ(400px);
     }
 
     .cube:hover .out_bottom {
         transform: rotateX(-90deg) translateZ(400px);
     }
 </style>


<script>
(function($){$.fn.snow=function(options){var $flake=$('<div id="flake" />').css({'position':'absolute','top':'-50px'}).html('&#10052;'),documentHeight=$(document).height(),documentWidth=$(document).width(),defaults={minSize:20,maxSize:40,newOn:300,flakeColor:"#2894FF"},options=$.extend({},defaults,options);var interval=setInterval(function(){var startPositionLeft=Math.random()*documentWidth-100,startOpacity=0.5+Math.random(),sizeFlake=options.minSize+Math.random()*options.maxSize,endPositionTop=documentHeight-40,endPositionLeft=startPositionLeft-100+Math.random()*200,durationFall=documentHeight*10+Math.random()*5000;$flake.clone().appendTo('body').css({left:startPositionLeft,opacity:startOpacity,'font-size':sizeFlake,color:options.flakeColor}).animate({top:endPositionTop,left:endPositionLeft,opacity:0.2},durationFall,'linear',function(){$(this).remove()});},options.newOn);};})(jQuery);
$.fn.snow({ minSize: 5, maxSize: 50, newOn: 800, flakeColor: '#2894FF' });
</script>
<script id="c_n_script" src="https://blog-static.cnblogs.com/files/xiaokang01/js.js" color="240,230,140" opacity="1" count="75" zindex="-2">
if(/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {

} else {

}
</script>


