<style>
     html {
         background: pink;
         height: 100%;
     }
 
     /*最外层容器样式*/
     .wrap {
         width: 10px;
         height: 10px;
         /*改变左右上下,图片方块移动*/
         margin: 300px 400px;
         position: relative;
 
     }
 
     /*包裹所有容器样式*/
     .cube {
         width: 600px;
         height: 400px;
         margin: 0 auto;
         transform-style: preserve-3d;
         transform: rotateX(-50deg) rotateY(-80deg);
         -webkit-animation: rotate 15s 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);
     }

     #home,#sideBarMain>div,#blog-sidecolumn>div>div,.catListView{
background-color: rgba(255, 255, 255, 0.3);
} // 修改其他边框的颜色

body {
background-color:whitesmoke;
} // 修改背景颜色为半透明`

#home {
    opacity: 0.80;
    margin: 0px auto;
    width: 70%;
    min-width: 950px;
    background-color: #fff;
    padding: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
}
 </style>




 <script language="javascript" type="text/javascript">
    var a=true
    $('.blogStats').html('<svg t="1572571609950" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1124" width="19" height="19"><path class="col" d="M562.88 554.56c0 28.032-22.784 50.816-50.88 50.816s-50.816-22.72-50.816-50.816V113.792c0-28.032 22.784-50.816 50.816-50.816s50.88 22.784 50.88 50.816V554.56z" fill="#ff00f7" p-id="1125"></path><path class="col" d="M86.016 535.36c0-152.064 80.32-285.76 200.512-360.64 23.488-14.976 54.912-7.808 69.76 16 14.848 23.872 7.68 55.104-16.064 69.952-91.584 57.536-152.448 158.656-152.448 274.56C188.16 714.24 332.928 859.072 512 859.456c179.072-0.448 323.776-145.28 324.096-324.224 0-118.656-64-221.952-159.296-278.656-24.192-14.336-32.128-45.568-17.856-69.76 14.4-24.128 45.632-32.064 69.824-17.792 124.928 73.792 209.344 210.176 209.344 366.08 0 235.136-190.656 425.856-425.92 425.856-235.456 0.384-426.176-190.272-426.176-425.6" fill="#ff00f7" p-id="1126"></path></svg><span class="ic">关闭页面特效</span>')
    $('.blogStats').click(function(){
        if(a){
            a=!a
            $('.ic').text('');
            $('.col').css('fill','#8a8a8a');
        }else{
             a=!a
             $('.ic').text('关闭页面特效');
             $('.col').css('fill','#ff00f7');
        }
      
        $('canvas').toggle();
    });


function RefreshPage() {
    return location.reload(1)
}
</script>
