This file contains hidden or 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
<ol class="posts_list"> | |
<li class="post_holder"></li> | |
</ol> | |
.posts_list { | |
margin-top: 0; | |
margin-bottom: 20px; | |
list-style: none; | |
-webkit-column-count: 4; | |
-moz-column-count: 4; |
This file contains hidden or 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
<script type="text/javascript"> | |
history.replaceState(null, null, 'custom url'); | |
</script> |
This file contains hidden or 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
$(window).resize(function () { | |
changingElPos(); | |
makeHeaderFixed(); | |
}).resize(); |
This file contains hidden or 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
<div class="video-responsive"> | |
<iframe width="auto" height="auto" src="ссылка на видео" frameborder="0" allowfullscreen></iframe> | |
</div> | |
.video-responsive { | |
position: relative; | |
padding-bottom: 56.25%; | |
height: 0; |
This file contains hidden or 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).click(function(e){ | |
if ($(e.target).closest("#header-search #search_mini_form").length) return; | |
$('#header-search #search_mini_form').removeClass('active'); | |
e.stopPropagation(); | |
}); | |
АБО | |
This file contains hidden or 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
function fixedHeader() { | |
var | |
boss = $(window), | |
y = boss.scrollTop(); | |
if (y > (218)) { | |
$('.header-fixed-wrapper').fadeIn(200); | |
} else { | |
$('.header-fixed-wrapper').fadeOut(100); | |
} | |
} |
This file contains hidden or 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
if ($_SERVER['REMOTE_ADDR'] == '91.199.194.247') { | |
тут писати | |
} |
This file contains hidden or 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
<div class="nav"> | |
<nav class="cvu-navigation"> | |
<ul class="navigation"> | |
<li class="active"><a href="#">Послуги</a></li> | |
<li><a href="#">Акції</a></li> | |
<li><a href="#">Галерея</a></li> | |
<li><a href="#">Жалюзі та ролети</a></li> | |
<li><a href="#">Натяжні стелі</a></li> | |
<li><a href="#">Ковані вироби</a></li> | |
<li><a href="#">Статті</a></li> |
This file contains hidden or 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
$('a[href^="#"]').click(function(){ | |
//Сохраняем значение атрибута href в переменной: | |
var target = $(this).attr('href'); | |
$('html, body').animate({scrollTop: $(target).offset().top}, 800); | |
return false; | |
}); |