Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Throw away the arduino ide.
Use avr-gcc and any real IDE, even Code::Blocks, even avr-studio
It's called a preloader...
Here are some links, read:
smartlanding.biz/kak-sdelat-preloader.html
popel-studio.com/blog/article/preloader-saita-svoi...
https://itproger.com/news /27
PS : The code is already there
Try this
In css full screen GIF
#preloader {
position: fixed;
left: 0;
top: 0;
z-index: 999999;
width: 100%
height: 100%;
overflow: visible;
background: #fafafa url('../img/1.gif') no-repeat center center;
}
and in jquery
to hide when the page is fully loaded
jQuery(document).ready(function($) {
$(window).load(function() {
setTimeout(function() {
$('#preloader').fadeOut('slow ', function() {});
}, 2000);
});
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question