Skip to content

Instantly share code, notes, and snippets.

View zdimaz's full-sized avatar
😄

zdimaz

😄
View GitHub Profile
@zdimaz
zdimaz / Open block from id
Last active June 27, 2019 10:21
Открытие блока по id
====================================================================================================
<a data-id="box">
<block data-id="box">
/**
** tabs to Id
**/
@zdimaz
zdimaz / js
Created June 17, 2019 13:28
js accordion
/**
** nextOpen
**/
accordion: function(){
var self = this;
$(".set > a").on("click", function(){
@zdimaz
zdimaz / AnchorLink
Last active April 4, 2019 09:47
Anchor link (Яскорные ссылки)
@zdimaz
zdimaz / ajax-simple-load-div.js
Last active March 18, 2019 14:37
ajax simple upload file in html from div
$(document).ready(function(){
if($("#include_header").length){
$("#include_header").load("include/header.html");
};
if($("#include_header").length){
$.get('header.html',function(response){
$('#header').html(response);
@zdimaz
zdimaz / script.core.js
Last active February 15, 2019 14:02
click triger outside
$(document).on('click', function(e) {
if (!$(e.target).closest(".search-header, .search-header-dropdown").length) {
$(".search-header-dropdown").slideUp();
}
e.stopPropagation();
});
@zdimaz
zdimaz / js
Last active December 7, 2018 11:04
spy title on scroll
// ==========================================================================
// Spy category
// ==========================================================================
if (screen.width <= 720) {
function spyCategory() {
$('.spy_category_item').each( function () {
@zdimaz
zdimaz / js
Last active December 7, 2018 10:57
Video script
var video_kitchen = $('#video_kitchen');
$('#custom_play_kitchen').on("click", function(){
$('#video_wrap_kitchen').toggleClass('active');
if(video_kitchen[0].paused) {
video_kitchen[0].play();
}
else {
@zdimaz
zdimaz / js
Created September 4, 2018 12:12
Sticky block
// sticky
function asideSticky() {
// body...
var asideItem = $('.aside_navigation'),
asideItemOffset = asideItem.offset().top;
$(window).scroll(function(){
if( $(this).scrollTop() > asideItemOffset ){
asideItem.addClass('sticky');
@zdimaz
zdimaz / js
Created June 18, 2018 14:36
Script real date (скрипт реальной даты)
function clock() {
var d = new Date();
var month_num = d.getMonth()
var day = d.getDate();
var hours = d.getHours();
var minutes = d.getMinutes();
var seconds = d.getSeconds();
month=new Array("01", "02", "03", "04", "05", "06",
"07", "08", "09", "10", "11", "12");
@zdimaz
zdimaz / html + javascript
Last active June 4, 2018 12:43
Навигация с активным пунктом при скролле
<ul class="navigation clearfix">
<li>
<a href="#block1" class="navigation_item current">Scroll block 1</a>
</li>
<li>
<a href="#block2" class="navigation_item">Scroll block 2</a>
</li>