jquery插件懒加载的示例

Kohana ·
更新时间:2024-11-10
· 742 次阅读

<!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插件懒加载的示例的详细内容,更多关于jquery插件懒加载的资料请关注软件开发网其它相关文章!



示例 懒加载 jQuery

需要 登录 后方可回复, 如果你还没有账号请 注册新账号