简体   繁体   中英

How to make image load smoother in Phonegap application

I have an application build in Phonegap in which on some pages, i have some divs, whose background are set to some images that are present in web.

<div class="clipBoard"></div>

.clipBoard {
   background: url(http://mydomain.com/img/img_1.png);
}

When i navigate to that page it takes time to show that image specially on android. Can we make some arrangements so as to show the fully developed image ?

You can pre-load that image when the app starts,

body:after{
   content: url(http://mydomain.com/img/img_1.png) display:none;
}

So when you navigate to that page, it will display that image without any delay.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM