I came across a pre-loader in YouTube, which look like this
I like to implement this type of preloader in my website, Couldn't find how to implement this type of preloader, It changes according to the Screen-size and theme[Dark or Normal]
I have implemented normal preloader like this
$(window).on('load', function () {
$('#preloader').delay(350).fadeOut('slow');
$('body').delay(350).css({ 'overflow': 'visible' });
})
Can anyone help to find the type of preloader used, Is is this image or something else.