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
html { | |
box-sizing: border-box; | |
} | |
*, | |
*::before, | |
*::after { | |
box-sizing: inherit; | |
} |
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
<!DOCTYPE html | |
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<title>HTML Template</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<style> | |
body { | |
width: 100% !important; |
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
$('.accordion').accordion({ | |
transitionSpeed: 400, | |
}); |
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
// !IMPORTANT: required wow.js | |
// npm i wowjs | |
const WOW = require('wowjs'); | |
if ($(window).width() >= 1025) { | |
window.wow = new WOW.WOW({ | |
live: false | |
}); |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<link rel="stylesheet" href="style.css"> | |
<title>Document</title> | |
</head> | |
<body> |
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
$('.modal__close').swipe({ | |
swipe: function (event, direction, distance, duration, fingerCount, fingerData) { | |
if (direction == 'down') { | |
} | |
}, | |
triggerOnTouchEnd: false, | |
threshold: 20 // сработает через 20 пикселей |
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
jQuery.fn.outerHTML = function () { | |
return jQuery('<div />').append(this.eq(0).clone()).html(); | |
}; |
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
.policy-checkbox input { | |
display: none; | |
} | |
.policy-checkbox span { | |
position: relative; | |
display: inline-block; | |
padding-left: 30px; | |
} |
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
<form class="form"> | |
<input type="hidden" name="project_name" value="nameOfSite"> | |
<input type="hidden" name="admin_email" value="EmailForSending"> | |
<input type="hidden" name="form_subject" value="SubjectOfMail"> | |
<div class="input-form"> | |
<input type="text" name="name" placeholder="Name"> | |
</div> | |
<div class="input-form"> | |
<input type="tel" name="phone" placeholder="Phone"> | |
</div> |
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="filter"> | |
<div class="filter__nav"> | |
<ul class="filter__nav-group" data-filter-group="group"> | |
<li><a href="#" class="button" data-filter=".group1">Группа1</a></li> | |
<li><a href="#" class="button" data-filter=".group2">Группа2</a></li> | |
<li><a href="#" class="button" data-filter=".group3">Группа3</a></li> | |
</ul> | |
<ul class="filter__nav-group" data-filter-group="season"> | |
<li><a href="#" class="button" data-filter=".winter">Зима</a></li> | |
<li><a href="#" class="button" data-filter=".summer">Лето</a></li> |
NewerOlder