Skip to content

Instantly share code, notes, and snippets.

View Mons1eurEnzo's full-sized avatar

Nikita Vokhmyanin Mons1eurEnzo

View GitHub Profile
@Mons1eurEnzo
Mons1eurEnzo / Live Reload Script.js
Last active January 16, 2017 08:09
jQuery - Live Reload Script
<script>document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1"></' + 'script>')</script>
@Mons1eurEnzo
Mons1eurEnzo / Background Full (Resize).js
Last active September 30, 2016 06:33
jQuery - Background Full
$(document).ready(function() {
function heightDetect() {
$(".main_head").css("height", $(window).height());
};
heightDetect();
$(window).resize(function() {
heightDetect();
});
});
@Mons1eurEnzo
Mons1eurEnzo / Page Preloader.html
Last active October 11, 2016 08:31
Sass & jQuery - Page Preloader
/*Перед body*/
<div class="loader">
<div class="loader_inner"></div>
</div>