.
.
...2017-07-03 12:22:15
Slider
..., 2017-07-03 12:22:15

How to make bxSlider paid appearance?

Tell me how to make the slider appear smoothly after loading the site page?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
M
Maxim Timofeev, 2017-07-03
@webinar

Transparency in css - opacity: 0;while 0 is full transparency, 1 is vice versa.
$( document ).ready()- page ready event
So like this:

$( document ).ready(function() {
    $('.myslider').addClass('itsalive');
});

in css
.myslider {opacity:0; transition: opacity 1s ease;}
.myslider.itsalive {opacity:1;}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question