html jQuery:在页面渲染时显示加载图形
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html jQuery:在页面渲染时显示加载图形相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset='UTF-8'>
<title>Simple Loader</title>
<style>
/* This only works with JavaScript,
if it's not present, don't show loader */
.no-js #loader { display: none; }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
</style>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script src="https://github.com/Modernizr/Modernizr/raw/master/modernizr.js"></script>
<script>
// Wait for window load
$(window).load(function() {
// Animate loader off screen
$("#loader").animate({
top: -200
}, 1500);
});
</script>
</head>
<body>
<img src="download.png" id="loader">
<img src="//farm6.static.flickr.com/5299/5400751421_55d49b2786_o.jpg">
</body>
</html>
以上是关于html jQuery:在页面渲染时显示加载图形的主要内容,如果未能解决你的问题,请参考以下文章
Jquery Geocomplete。在页面加载时显示用户当前位置
jQuery Mobile 面板在页面完全加载之前在初始加载时显示,速度较慢的设备
IE 8 在使用 jQuery BBQ 重新加载页面时显示原始 ajax 响应
jquery 怎么让一个div的内容未加载完时显示加载中...
通过 jQuery 加载图像时显示加载图像
如何仅在 Angular 的某些页面上显示标题组件(现在它仅在重新加载时显示)