/*禁止页面选中、复制
html, body{
moz-user-select: -moz-none;
-moz-user-select : none;
-o-user-select: none;
-khtml-user-select : none;
-webkit-useh-select : none;
-ms-user-select:none;
user-select : none;
}
*/

       /* body {
            background-image: url("https://w.wallhaven.cc/full/83/wallhaven-83dgj2.png");
            background-repeat: no-repeat;
            background-size: 100% 100%;
            background-attachment: fixed;
            background:rgba(255,255,255,0.5)
            opacity:0.85;
        }
        弥豆子
        */



/*标题颜色滚动字*/
#blogTitle h1 a{
background-image: 
        -webkit-gradient( linear, left top, right top, color-stop(0, #B0C4DE), 
        color-stop(0.15, #CCCCCC), 
        color-stop(0.3, #999999), 
        color-stop(0.45, #666666), 
        color-stop(0.6, #333333),
        color-stop(0.75, #000000), 
        color-stop(0.9, #99CCCC), 
        color-stop(1, #B0C4DE) );
    color: transparent;-webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-background-size: 200% 100%;
    -webkit-animation:  maskedAnimation 5s infinite linear;
    -webkit-background-clip: text;-moz-background-clip: text;-ms-background-clip: text
}
/*文字颜色变化*/
@keyframes maskedAnimation {
    0% {
    background-position: 0 0;
    }
    100% {
        background-position: -100% 0;
    }
}
/*文字颜色变化*/
@keyframes change {
0% {color: DeepPink;}
25% {color: DeepSkyBlue;}
50% {color: Gold;}
75% {color: MediumAquamarine;}
100% {color: BlueViolet;}
}