zoukankan      html  css  js  c++  java
  • lazyload

    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Insert title here</title>
    </head>
    <body>
    <body>
        <img data-original="images/001.jpg" src="js/grey.gif"
            height="1077" border="0" />
        <br />
        <br />
        <img data-original="images/002.jpg" src="js/grey.gif"
            height="1077" border="0" />
        <br />
        <br />
        <img data-original="images/003.jpg" src="js/grey.gif"
            height="1077" border="0" />
        <br />
        <br />
        <img data-original="images/004.jpg" src="js/grey.gif"
            height="1077" border="0" />
        <br />
        <br />
        <img data-original="images/005.jpg" src="js/grey.gif"
            height="1077" border="0" />
        <br />
        <br />
        <img data-original="images/006.jpg" src="js/grey.gif"
            height="1077" border="0" />
        <br />
        <br />
        <img data-original="images/007.jpg" src="js/grey.gif"
            height="1077" border="0" />
        <br />
        <br />
        <img data-original="images/008.jpg" src="js/grey.gif"
            height="1077" border="0" />
        <br />
        <br />
        <img data-original="images/009.jpg" src="js/grey.gif"
            height="1077" border="0" />
        <br />
        <br />
        <script src="js/jquery-1.7.js" type="text/javascript"
            charset="utf-8"></script>
        <script src="js/jquery.lazyload.js" type="text/javascript"
            charset="utf-8"></script>
        <script type="text/javascript" charset="utf-8">
            $(function() {
                $("img").lazyload({
                    effect : "fadeIn"
                });
            });
        </script>
    </body>
    </body>
    
    </html>
  • 相关阅读:
    称重量
    计算机网络
    进程间的通信方式与区别
    求两IP是否在同一局域网(运子网掩码用)
    Linux Redhat7 磁盘阵列基本原理
    Linux Redhat7更改root用户密码
    更改Linuxshell类型
    linux系统下的/var/spool/mail/root
    centos 解决"不在 sudoers 文件中。此事将被报告
    redhat 7 安装图形界面
  • 原文地址:https://www.cnblogs.com/jami918/p/3532503.html
Copyright © 2011-2022 走看看