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 | |
<article class="tabs"> | |
<div class="tab"> | |
<input type="radio" name="css-tabs" id="tab-1" checked class="tab-switch"> | |
<label for="tab-1" class="tab-label">Текст</label> | |
<div class="tab-content"> | |
<div class="tab-content-text"> | |
<div class="tab-text"> | |
<p>Главные героини сериала Absolutely Fabulous (“Абсолютно невероятно”) – две подруги, которые отказываются стареть. Они курят, пьют, употребляют наркотики – морально разлагаются всеми возможными способами, как в молодости.</p> |
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
// Apparently doesn't work on smartphones with Chrome. | |
$(window).scroll(function (event) { | |
var y = $(this).scrollTop(); | |
if (y >= 500) { | |
$('.class').addClass('animated fadeInDown'); | |
} | |
}); | |
// Needs Animate.css |
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
// // Apparently doesn't work on smartphones with Chrome. | |
// HTML | |
<section id="about" class="s-about bg-light"> | |
<div class="section-header"> | |
<h2>Обо мне</h2> | |
<div class="s-descr-wrap"> | |
<h6>Познакомимся ближе</h6> | |
</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
// HTML | |
<section id="portfolio" class="s-portfolio bg-dark"> | |
<div class="section-header"> | |
<h2>Портфолио</h2> | |
<div class="s-descr-wrap"> | |
<h6>Мои последние работы</h6> | |
</div> | |
</div> | |
<div class="section-content"> |
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 | |
$("a[href^='#section']").on('click', function (event) { | |
var target = $(this.getAttribute('href')); | |
if (target.length) { | |
event.preventDefault(); | |
$('html, body').stop().animate({ | |
scrollTop: target.offset().top | |
}, 1000); | |
} |
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 | |
<p class="link-button"> | |
<a href="#subscribe">Подписаться</a> | |
</p> | |
<div id="subscribe" class="modal"> | |
<div class="content"> | |
<form class="forms"> | |
<h4>Подписка:</h4> |
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
// CSS Loop | |
li | |
@for $i from 1 through 6 | |
&:nth-child(#{$i}) | |
animation-duration: 400ms * $i |
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
// Vivus SVG animation | |
// Initial CSS: display: none | |
var details = { | |
type: "delayed", | |
duration: 200, | |
animTimingFunction: Vivus.EASE | |
}; |