Skip to content

Instantly share code, notes, and snippets.

View zdimaz's full-sized avatar
😄

zdimaz

😄
View GitHub Profile
@zdimaz
zdimaz / style.css
Last active February 19, 2021 15:45
css basic grid
/* --------------------------------------------
basic float grid
-------------------------------------------- */
.row {
margin-left: -15px;
margin-right: -15px;
}
.row::before,
@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 / 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
Last active October 25, 2021 08:27
btn to top scroll
js
$(window).on("scroll", function(){
if ($(this).scrollTop() > 100) {
$('.btn_scrollup').fadeIn();
} else {
$('.btn_scrollup').fadeOut();
}
});
@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
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 / 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 / js
Last active March 16, 2020 12:43
click target (not child)
Если e.target - это тот же самый элемент, что и this, вы не нажали на потомка.
$('.foobar').on('click', function(e) {
if (e.target !== this){
return;
};
alert( 'clicked the foobar' );
@zdimaz
zdimaz / script.core.js
Last active September 2, 2019 10:23
accordion plugin jq
self.jqueryExtend();
/*
*
*
* Accordion
*
*/
@zdimaz
zdimaz / js
Created June 17, 2019 13:28
js accordion
/**
** nextOpen
**/
accordion: function(){
var self = this;
$(".set > a").on("click", function(){