Skip to content

Instantly share code, notes, and snippets.

@Nekspsy
Nekspsy / window-resize-end.js
Created August 9, 2017 11:46 — forked from agragregra/window-resize-end.js
Window resize-end function
//Resize Window
function onResize() {
};
var doit;
doit = setTimeout(onResize, 400);
window.onresize = function() {
clearTimeout(doit);
doit = setTimeout(onResize, 400);
};
@Nekspsy
Nekspsy / scroll-top.html
Created August 9, 2017 11:45 — forked from agragregra/scroll-top.html
Scroll Top Button
<div class="top" title="Наверх"><i class="fa fa-angle-double-up"></i></div>
.top
position: fixed
bottom: 25px
background-color: #E0E0E0
border-radius: 10em
color: #666
font-size: 26px
width: 50px
@Nekspsy
Nekspsy / owl-equal-heights.js
Created August 9, 2017 11:43 — forked from agragregra/owl-equal-heights.js
Owl Carousel Equal Heights
onRefresh: function () {
owl.find('div.owl-item').height('');
},
onRefreshed: function () {
owl.find('div.owl-item').height(owl.height());
}
@Nekspsy
Nekspsy / index.html
Created February 25, 2016 12:18
form navbar
<form class="navbar-form pull-right">
<input type="text" style="width: 200px;">
<button type="submit" class="btn btn-default">Submit</button>
</form>