admin管理员组文章数量:1349699
I am doing a phonegap app. I have an index.html page with a sign-in button that redirects to the website app.
When sign-in button was clicked, I wanted to have a loading gif to show while the page is being cached/pre-loaded and redirect to the page when its done.
I would appreciate a sample script code.
I am doing a phonegap app. I have an index.html page with a sign-in button that redirects to the website app.
When sign-in button was clicked, I wanted to have a loading gif to show while the page is being cached/pre-loaded and redirect to the page when its done.
I would appreciate a sample script code.
Share Improve this question edited Jun 9, 2014 at 2:10 h3n asked May 30, 2014 at 1:05 h3nh3n 5,2489 gold badges50 silver badges77 bronze badges 2- Can you clarify? You want the code to show the pre-loader gif or the code to pre-load a web page? – Veera Commented Jun 8, 2014 at 14:03
- I just changed "pre-loader gif" to "loading gif". I want to show the gif while pre-loading the page. – h3n Commented Jun 9, 2014 at 2:11
3 Answers
Reset to default 5I'm not even sure you need to use any jQuery or Javascript unless you want to dynamically take care of many cases like this. You can look into HTML5 prefetch to preload and cache the next page after login. So in the head of your document add:
<link rel="prefetch" href="http://example-site/next_page_after_login.html" />
You can read more about this on David Walsh blog here, or read more on MDN prefetch MDN
I acplished a similar task using <iframe>
elements. My phonegap app needed to load (local) pages, possibly modifying them via jQuery. Using plain redirects (via window.location
) caused loading artifacts for two reasons:
- images appeared as they were being loaded
- the page state before jQuery modifications momentarily flashed.
I solved this problem by loading the page in a non-visible <iframe>
, and making the <iframe>
visible only after it had loaded and modifications had been made via jQuery. I supposed there are various ways to do this, but I did it by "juggling" <iframe>
elements via their z-index
.
I have created an annotated fiddle that is slightly simpler and adds a loading spinner:
http://jsfiddle/Leftium/L2HdV/ (Hat tip to Umidbek for the spinner!):
jQuery(document).ready(function ($) {
$app = $('.app');
// Attach behavior to Login button.
$('.login').on('click', function () {
$app.addClass('loading');
// Create an <iframe>.
$iframe = $('<iframe>');
// Set url of <iframe> to desired redirect URL.
// Note: the URL must be in the same domain,
// or set special HTTP headers to allow rendering inside an <iframe>.
$iframe.attr({src: 'http://doc.jsfiddle/'});
// Add <iframe> we just created to DOM.
$iframe.appendTo($('body'));
// When <iframe> has been loaded, remove <div> containing login button
// and loading spinner to reveal <iframe>.
$iframe.load(function() {
$('.app').remove()
});
});
});
This is very simple example:
http://jsfiddle/umidbek_karimov/DQ2wn/
Use css classes to manipulate visibility of the loader div and switch between pages.
jQuery(document).ready(function ($) {
$app = $('.app'),
$pages = $('.page');
$('.login').on('click', function () {
$app.addClass('loading');
$pages.removeClass('active').filter('.page-2').addClass('active');
setTimeout(function () {
$app.removeClass('loading');
}, 500);
});
$('.logout').on('click', function () {
$app.addClass('loading');
$pages.removeClass('active').filter('.page-1').addClass('active');
setTimeout(function () {
$app.removeClass('loading');
}, 500);
});
$app.removeClass('loading');
});
But if you need more plicated solution it's better to use some js frameworks, Knockout.js + some js router, or more powerful Angular.JS
本文标签: javascriptHow to preload (cache) an external page in jquery before redirecting to itStack Overflow
版权声明:本文标题:javascript - How to pre-load (cache) an external page in jquery before redirecting to it? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743837135a2547607.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论