画布与动画菜单链接

画布与动画菜单链接284
这是也不支持IE9及以下的浏览
<div class="mobile">
            <!-- Checkbox to toggle the menu -->
            <input type="checkbox" id="tm" />
            <!-- The menu -->
            <ul class="sidenav">
                <li><a href="#"><i class="fa fa-check"></i><b>Tasks</b></a></li>
                <li><a href="#"><i class="fa fa-inbox"></i><b>Messages</b></a></li>
                <li><a href="#"><i class="fa fa-pencil"></i><b>New Post</b></a></li>
                <li><a href="#"><i class="fa fa-cog"></i><b>Settings</b></a></li>
                <li><a href="#"><i class="fa fa-star"></i><b>Starred</b></a></li>
                <li><a href="#"><i class="fa fa-power-off"></i><b>Logout</b></a></li>
            </ul>
            <!-- Content area -->
            <section>
			<!-- Label for #tm checkbox -->
			<label for="tm">Click Me</label>
		</section>
        </div>
CSS
   .mobile
        {
            float: left;
            position: relative;
            box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }
        /*Hiding the checkbox*/
        #tm
        {
            display: none;
        }
        /*Content area*/
        .mobile section
        {
            background: url("mb1.png");
            width: 285px;
            height: 500px;
            position: relative;
            transition: all 0.25s;
        }
        .mobile section label
        {
            color: white;
            font: bold 14px Montserrat;
            text-align: center;
            border: 2px solid white;
            border-radius: 4px;
            display: block;
            padding: 10px 0;
            width: 60%;
            position: absolute;
            left: 20%;
            top: 100px;
            cursor: pointer;
            text-transform: uppercase;
        }
        /*Nav styles*/
        .sidenav
        {
            background: rgb(50, 60, 60);
            width: 150px;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            padding-top: 100px;
        }
        .sidenav li
        {
            list-style-type: none;
        }
        .sidenav a
        {
            color: white;
            text-decoration: none;
        }
        .sidenav b
        {
            font: bold 12px/48px Montserrat;
            display: block;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.4s;
        }
        .sidenav i
        {
            display: block;
            width: 50px;
            float: left;
            font-size: 16px;
            line-height: 48px;
            text-align: center;
        }
        /*Animation controls using checkbox hack*/
        /*Animate content area to the right*/
        #tm:checked ~ section
        {
            transform: translateX(150px);
        }
        /*Animate links from right to left + fade in effect*/
        #tm:checked ~ .sidenav b
        {
            opacity: 1;
            transform: translateX(0);
        }
        
        /*Adding delay to link animation - in multiples of .08s*/
        /*One can use jQuery also for creating the delayed effect. But I will stick to manual CSS for this walkthrough.*/
        #tm:checked ~ .sidenav li:nth-child(1) b
        {
            transition-delay: 0.08s;
        }
        #tm:checked ~ .sidenav li:nth-child(2) b
        {
            transition-delay: 0.16s;
        }
        #tm:checked ~ .sidenav li:nth-child(3) b
        {
            transition-delay: 0.24s;
        }
        #tm:checked ~ .sidenav li:nth-child(4) b
        {
            transition-delay: 0.32s;
        }
        #tm:checked ~ .sidenav li:nth-child(5) b
        {
            transition-delay: 0.40s;
        }
        #tm:checked ~ .sidenav li:nth-child(6) b
        {
            transition-delay: 0.48s;
        }

也许你还喜欢