Questions tagged [preloading]

Use preloading for questions related to programmatically requesting files or data using a heurestic or presumptive algorithm.

Preloading can be used to optimize the user experience based on events, hints, metadata, or user behavior analysis.

References

273 questions
0
votes
1 answer

blurred/pixelized preloading for images

I like the way the images are preloaded on the website of the guardin, for instance in this case : http://www.theguardian.com/artanddesign/gallery/2014/dec/08/photographer-of-the-year-2014-shortlist They are first of all blurred/pixelized and then…
guillaumeb
  • 11
  • 5
0
votes
1 answer

preloading images in a css3 background slideshow

I am working on a CSS3 landing page for a client of mine that uses background images. I am having trouble getting images to preload. I saw this method but am unsure how to apply it to this scenario:…
John B.
  • 161
  • 1
  • 4
  • 12
0
votes
1 answer

preload image with jquery

Updated: firs append a empty image and a span with some text hide the loading image, after it's load it's show the image var pathimg = "path/to/image" + "?" + (new Date()).getTime(); $('#somediv').append('
loading..
robertdd
  • 325
  • 1
  • 8
  • 22
0
votes
1 answer

Looking for a way that a page load time can decrease for a page that has lots of HTML5 audio

In the instance of a page with a great deal of HTML5 audio, and to maximize the load time efficiency (i.e. - to make it load as fast as possible), couldn't we set a value in the preload parameter to achieve this? Currently, I have preload set to…
abtecas
  • 279
  • 2
  • 4
  • 13
0
votes
2 answers

Add basic value to Ontology individuals @Jena

I have an Ontology with some Classes and everything setup to run. What is a good way to fill it up with Individuals and Data?? In Short do a one-way Mapping from Database (as Input) to an Ontology. public class Main { static String SOURCE = …
Benjamin Eckstein
  • 884
  • 2
  • 9
  • 19
0
votes
1 answer

Jquery preload images 1 through 40

I'm working on pre loading images and I am trying to load 1 through 40 but its not working :( here is the code: function preload(arrayOfImages){ $(arrayOfImages).each(function(){ (new Image()).src = this; }); };preload(['/img/wallpapers/'images…
Millzie
  • 312
  • 1
  • 3
  • 13
0
votes
1 answer

MS Access: Pre-loading data from backend

Summary I have various forms in an Access front end database with several drop-down lists. These populate from queries, which take data from tables in a back end Access database (via linked tables). On opening the front end and clicking the first…
Mark Butler
  • 895
  • 1
  • 5
  • 18
0
votes
1 answer

load time is the same with preloading or without

This is my code for preloading images, placed in head of page. I checked the browser's cache, and it works, images are there.