欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jquery插件懶加載的示例

 更新時(shí)間:2020年10月24日 10:52:28   作者:thomas_blog  
這篇文章主要介紹了jquery插件懶加載的示例,幫助大家更好的利用jQuery制作網(wǎng)頁(yè),感興趣的朋友可以了解下
<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title></title>
  <script src="jquery-1.11.1.min.js" type="text/javascript" charset="utf-8"></script>
  <script src="jquery.lazyload.min.js" type="text/javascript"></script>

  <style type="text/css">
   #box {
    background-color: yellow;
    width: 300px;
    height: 200px;
   }
  </style>

  <script type="text/javascript">
   $(document).ready(function() {
    $("img.lazy").lazyload();
   });
  </script>
 </head>
 <body>
  <div id="box">
  </div>
  <img class="lazy" data-original="avatar.png" width="215" height="215">
 </body>
</html>

以上就是jquery插件懶加載的示例的詳細(xì)內(nèi)容,更多關(guān)于jquery插件懶加載的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!

相關(guān)文章

最新評(píng)論