Line break text Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{ | |
"quoteText": "Genius is one percent inspiration and ninety-nine percent perspiration.", | |
"quoteAuthor": "Thomas Edison" | |
}, { | |
"quoteText": "You can observe a lot just by watching.", | |
"quoteAuthor": "Yogi Berra" | |
}, { | |
"quoteText": "A house divided against itself cannot stand.", | |
"quoteAuthor": "Abraham Lincoln" | |
}, { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Slick================ | |
// Иниализация слайдера | |
$('.siema').slick({ | |
fade: true, | |
autoplay: true, | |
autoplaySpeed: 5000, | |
speed: 300 | |
}); | |
// Изменение ДО сменны слайда |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#loader { | |
background: none repeat scroll 0 0 #ffffff; | |
bottom: 0; | |
height: 100%; | |
left: 0; | |
position: fixed; | |
right: 0; | |
top: 0; | |
width: 100%; | |
z-index: 9999; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function(){ | |
function heightDetect(){ | |
$(".main_header").css("min-height", $(window).height()); | |
}; | |
heightDetect(); | |
$(window).resize(function(){ | |
heightDetect(); | |
}) | |
}); |