Questions tagged [preloader]

Preloader is usually referred to the Gif image shown to user to indicate wait or processing state.

Preloader is usually referred to the Gif image in-which an indication for the user to wait or processing state. It seems like the following images samples:

enter image description here enter image description here enter image description here

Preloaders are widely used with era because it usually includes some changes that may take some time without reloading the page so the user should be visually alerted that something is being done.

List of some popular online preloaders generators

678 questions
128
votes
13 answers

Preloading CSS Images

I have a hidden contact form which is deployed clicking on a button. Its fields are set as CSS background images, and they always appears a bit later than the div that have been toggled. I was using this snippet in the section, but with no…
Peanuts
  • 2,425
  • 5
  • 27
  • 32
49
votes
10 answers

How to call .ajaxStart() on specific ajax calls

I have some ajax calls on the document of a site that display or hide a progress bar depending on the ajax status $(document).ajaxStart(function(){ $('#ajaxProgress').show(); }); $(document).ajaxStop(function(){ …
kevzettler
  • 3,980
  • 11
  • 45
  • 82
33
votes
5 answers

Public functions from within a jQuery plugin

I love the jQuery plugin architecture, however, I find it frustrating (probably due to a lack of understanding on my part) when I want to retain a reference to the plugin instance to access properties or methods later on in my code. Edit: I want to…
Daniel
  • 2,579
  • 3
  • 21
  • 17
30
votes
6 answers

Webpack config has an unknown property 'preLoaders'

I'm learning webpack from scratch. I've learned how to link javascript files with require. I'm bundling and minifying my js files and i'm listening for changes with watch. I'm setting up loaders to convert my sass files to css. But when I try to…
bakerTX
  • 311
  • 1
  • 3
  • 4
16
votes
6 answers

Is it possible to preload page contents with ajax/jquery technique?

Is it possible to preload all page contents (like showing a loading bar / animated gif.. or loading text.. ) until the contents are fully loaded and then displayed to the user/visitor ? If this is possible, can you give me just directions or…
Ahmad Fouad
  • 3,587
  • 14
  • 42
  • 62
11
votes
6 answers

Angular 2+ Application pre loader with percentage indicator

Does anyone know the good solution for implementing Angular 2+ pre loader with percentage indicator ( Similar to Gmail's loading screen )? I know that usual way is to add
inside our and style it, maybe even add CSS animations and it…
Milos Miskone Sretin
  • 1,608
  • 1
  • 24
  • 44
11
votes
3 answers

How to create splash screen as a Preloader in JavaFX standalone application?

I created a Preloader (based on the following tutorial) that should display a splash screen for the main application. 9.3.4 Using a Preloader to Display the Application Initialization…
krsi
  • 955
  • 2
  • 11
  • 22
10
votes
2 answers

How to use JavaFX Preloader with stand-alone application in Eclipse?

My IDE is Eclipse and my project is a stand-alone JavaFX application (pure CS architecture with OSGI framework). How to use preloader thus the preloader would be started before my main application and hid later? I found some code…
Keon Wang
  • 335
  • 1
  • 3
  • 15
9
votes
4 answers

Block UI spinning preloader

I was wondering if anyone could shed insight as to how I could add a spinning preloader (like apple uses) using the jQuery Block UI plugin. The preloader would have to spin until the AJAX content loads. Is this possible with Block UI? Any…
Chad
  • 103
  • 1
  • 2
  • 4
9
votes
1 answer

How to set preload scope for Rails Associations::Preloader?

I need to preload associations of the model with complex conditions. NO, includes doesn't work for me. It generate wrong SQL for my task. I take a look to the ActiveRecord::Associations::Preloader and find that he take an preload_scope…
Vladimir
  • 103
  • 1
  • 9
9
votes
6 answers

Loading GIF (Preloader) gets stuck only on Chrome

I have a gallery in my website. The gallery contains 15 images, each one of them is approximately 500KB (total size is 7.5MB). Because the gallery takes a while to load (25 seconds on my computer, tough it depends on the connection), I want the…
amiregelz
  • 1,718
  • 7
  • 20
  • 36
8
votes
4 answers

Image preloader javascript that supports events

I am trying to find an image preloader script. While i found a few, none of them supports an event that is triggered when preloading is finished. Does anyone know of any script or jQuery plugin that will do this? Hope this question is appropriate…
SquareCat
  • 5,318
  • 5
  • 33
  • 74
8
votes
2 answers

Best way to preload images

What's the best way to preload images? I'm trying to create an image tab that has around 59 png images. Here's the code I have so far: …
Poch
  • 359
  • 1
  • 9
  • 22
8
votes
3 answers

Java 9 JavaFX Preloader

In Java 8 I can launch a JavaFX application with a preloader using the following method: LauncherImpl.launchApplication(WindowMain.class, WindowMainPreloader.class, new String[]{...}); I prefer to start it from code, like above, instead of using a…
8
votes
2 answers

javascript preloader/progress/percentage

I'm having trouble finding any good information on how to make a javascript(or jquery) progress bar WITH text that tells you the percentage. I don't want a plug in, I just want to know how it works so that I can adapt it to what I need. How do you…
heckascript
  • 2,034
  • 3
  • 22
  • 39
1
2 3
45 46