Skip to content

Instantly share code, notes, and snippets.

View pusanukbr's full-sized avatar
:bowtie:
Looking for a job

Bohdan Pysaniuk pusanukbr

:bowtie:
Looking for a job
View GitHub Profile
[{
"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"
}, {

Welcome to my React Markdown Previewer!

This is a sub-heading...

And here's some other cool stuff:

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.

@pusanukbr
pusanukbr / slick.js
Created November 29, 2017 14:41
Slick изменение по событию
// Slick================
// Иниализация слайдера
$('.siema').slick({
fade: true,
autoplay: true,
autoplaySpeed: 5000,
speed: 300
});
// Изменение ДО сменны слайда
@pusanukbr
pusanukbr / preload.js
Created November 26, 2017 12:43
Прелоадер(Нужно добавить gif файл)
#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;
@pusanukbr
pusanukbr / header.js
Created November 26, 2017 12:41
Блок в высоту экрана
$(document).ready(function(){
function heightDetect(){
$(".main_header").css("min-height", $(window).height());
};
heightDetect();
$(window).resize(function(){
heightDetect();
})
});