首页 > 代码库 > 【2016.12.02】CSS中的一些黑科技

【2016.12.02】CSS中的一些黑科技

1、鼠标移进网页里,不见了= =

*{
    cursor: none!important;
}

2、简单的文字模糊效果

*{ 
    color: transparent;
    text-shadow: #111 0 0 5px;
}

 

【2016.12.02】CSS中的一些黑科技