Tuesday, October 1, 2019

Page Preloader Using Jquery and Custom CSS

Here is a sample program that is being provided by my close friend, business partner and fellow software engineer Sir Larry Dave Emol. He created this program using he called Page Preloader Using Jquery and Custom CSS. Simple jQuery preloader with few lines of CSS and jQuery code.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.


My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.


My personal website is http://www.jakerpomperada.com.


Program Listing

Custom.js

jQuery(function($){'use strict';(function(){
$('#preloader').delay(200).fadeOut('slow');
}())})

Custom CSS

#preloader {
    width: 100%;
    height: 100%;
    background: #21211e;
    z-index: 11000;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}


/*** Page Reloader **/
.LoadingDots.small .dot {
    width: 20px;
    height: 20px;
    margin: 0 2px;
}
.LoadingDots .dot {
    background-color: #ccc;
    border-radius: 100%;
    display: inline-block;
    animation: sk-bouncedelay 1s infinite ease-in-out both;
}
.LoadingDots {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    min-width: 36px;
}
.LoadingDots .second {
    animation-delay: -0.16s;
    background-color: beige;
}
.LoadingDots .first {
    animation-delay: -0.32s;
    background-color: pink;
}
.LoadingDots .third {
    background-color: hotpink;
}
@keyframes sk-bouncedelay{
0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
}
   
40% {
    -webkit-transform: scale(1);
    transform: scale(1);
}
}
.small {
    animation: fadeInUp 150ms ease-out 0s 1 normal forwards;
}

@keyframes fadeInUp{
0% {
    opacity: 0;
    -webkit-transform: translate3d(0,5px,0);
    transform: translate3d(0,5px,0);
}

100% {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
}





No comments:

Post a Comment