recording.html 704 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <link rel="stylesheet" href="sass/main.css">

<style>
    .tip{
        width: 360px;
        height: 340px;
        background: url('img/start.png') no-repeat;
        position: relative;
        margin: 0 auto;
    }
    .start-btn{
        width: 100px;
        height: 62px;
        background: url('img/start-btn.png') no-repeat;
        background-size: 100%;
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        bottom: 0;
        cursor: pointer;
    }
</style>
</head>
<body>
    <div class="tip">
        <a class="start-btn"></a>
    </div>
</body>
</html>