仿苹果4滑动解锁样式

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>滑动解锁</title>

</head>

<style>

    body {

        background-color: #111;

    }

   

    @keyframes slip {

        from {

            background-position: 100%;

        }

        to {

            background-position: 0;

        }

    }

   

    div {

        position: absolute;

        width: 700px;

        height: 100px;

        font-size: 40px;

        left: 100px;

        top: 100px;

        color: transparent;

        background-color: #111;

        text-align: center;

        line-height: 100px;

        -webkit-background-clip: text;

        background-color: #111;

        background-image: -webkit-linear-gradient(-45deg, rgba(0, 0, 0, 0.1) 30%, #ccc 50%, rgba(0, 0, 0, 0.1) 70%);

        background-size: 200%;

        -webkit-animation: slip 4s infinite;

    }

</style>

<body>

    <div>滑动来解锁屏幕</div>

</body>

</html>

上一篇:Linux企业运维--LAMP--mysql-php-memcache


下一篇:HoloLens的显示分辨率有多少?