ItSolutionStuff.com

JQuery Show Loading Gif Image While Load Image Example

By Hardik Savani • November 5, 2023
Javascript jQuery

Eager ImageLoader plugs give us lazy loading before image loads, in this example you can load your gif image that you want before main image load. In this example i use eager-image-loader plugin.

As you can see bellow preview that before image load. so first you have to give path of gif image "./upload/loading.gif" instead of your gif image path. If you want to get this image then you can get from demo.

Preview:

Example:

<html lang="en">

<head>

<title>Jquery - Display a loading gif image before a image loads</title>

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>

<script src="https://raw.githubusercontent.com/anseki/eager-image-loader/master/eager-image-loader.min.js"></script>

<style type="text/css">

img{

width:330px;height:220px;border:1px solid #a1a1a1;

}

</style>

</head>

<body>

<div class="container text-center" style="height:900px;">

<h2>Display a loading gif image before a image loads</h2>

<img data-src="http://itsolutionstuff.com/upload/Laravel-google-captcha.png" src="./upload/loading.gif" class="img-1">

<img data-src="http://itsolutionstuff.com/upload/Laravel-5-Repository-Pattern-Tutorial.png" src="./upload/loading.gif" class="img-1">

<img data-src="http://itsolutionstuff.com/upload/PHP-Angular-JS.png" src="./upload/loading.gif" class="img-1">

<script type="text/javascript">

new EagerImageLoader();

</script>

</div>

</body>

</html>

If you want to get more information from here : EagerImageLoader.

I hope it can help you...

Tags: jQuery
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Remove Special Characters from a String in JQuery?

Read Now →

JQuery Moment Subtract Month Example

Read Now →

How to Print Iframe Content using Jquery?

Read Now →

JQuery Radio Button Change Event Example

Read Now →

Add Edit Delete Table Row Example using JQuery

Read Now →

PHP JQuery Chosen Ajax Autocomplete Example

Read Now →

Codeigniter JQuery Ajax Request Example

Read Now →

How to Remove Comma from String in JQuery?

Read Now →

JQuery Add Remove Input Fields Dynamically Example

Read Now →

How to Disable Right Click Menu using JQuery?

Read Now →

JQuery Hide and Show Password using Eye Icon Example

Read Now →

JQuery Datepicker Example using JQuery UI JS

Read Now →

JQuery Select Box with Search Option using Chosen Plugin

Read Now →

Preview an image before Upload using jQuery Example

Read Now →