码迷,mamicode.com
首页 > 其他好文 > 详细

遮罩动画效果

时间:2016-06-13 19:13:47      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html lang="zh-cn">
<head>
    <meta charset="UTF-8">
    <title>遮罩动画效果</title>
</head>

<style type="text/css">
body {
    background: #cccccc;
}

div {
    text-align: center;
    margin: auto;
    background-image: url(‘./sister.png‘);
    background-repeat: repeat-x;
    background-position: 0 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: bg_change 10s linear infinite;
}

@keyframes bg_change {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 0;
    }
}

span {
    color: #000;
    font-family: ‘Microsoft yahei‘;
    font-size: 100px;
    font-weight:bold;
}
</style>
<body>

<div>
    <span>俺妹不可能那么可爱</span>
</div>

</body>
</html>

 

遮罩动画效果

标签:

原文地址:http://www.cnblogs.com/lqcdsns/p/5581491.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!