zoukankan      html  css  js  c++  java
  • 使用canvas实现擦玻璃效果---转载

    <!DOCTYPE html>
    <html>
    <head lang="zh">
    <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width" />
    <meta charset="UTF-8">
    <title>HTML5擦玻璃效果 - 何问起</title>
    <base target="_blank" />
    </head>
    <body style="margin: 0; padding: 0;"> <!-- 图片需用本地图片 ,网络图片无效 -->
    <div id="box" style=" 100%; min-height:480px;" data-image-src="img/hovertreecity.jpg"></div> 
    </body>
    </html>
    <style>
    .clean-window-out {
    position: relative;
    padding: 0;
    }
    .clean-window-out .window-image, .clean-window-out .window-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    }
    .clean-window-out .window-canvas {
    z-index: 2;
    }
    
    a {
    color: white;
    }
    .hwqewm {
    width: 200px;
    height: 176px;
    position: fixed;
    z-index: 99999;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    color: white;
    }
    </style>
    <script src="http://hovertree.com/texiao/html5/25/hovertreegrass.js"></script>
    <!-- Greate by HoverTree (Sun Mar 27 02:45:46 CST 2016) 43ms -->
  • 相关阅读:
    Python中下划线---完全解读(转)
    数字、基数及表示
    实现二叉排序树的各种算法
    shell脚本 空格
    Linux中执行shell脚本的4种方法
    vim常用命令总结
    Linux 奇技淫巧
    排序算法之二分治法
    二分查找
    排序算法之一插入排序
  • 原文地址:https://www.cnblogs.com/binmengxue/p/5382789.html
Copyright © 2011-2022 走看看