Skip to content

Instantly share code, notes, and snippets.

@Scretch-1
Scretch-1 / fade.js
Last active February 26, 2016 10:45
JS Fade. Плавное появление, исчезание элемента
// Плавное появление, исчезание блока
// Документация http://www.w3schools.com/jquery/jquery_fade.asp
// <button>Открыть блок</button><br><br>
// <div id="div1" style="width:80px;height:80px;background-color:red;"></div><br>
$(document).ready(function(){
$("button").click(function(){
$("#div1").fadeToggle();
// Вариации:
// $("#div2").fadeToggle("slow");
// $("#div3").fadeToggle(3000);
@Scretch-1
Scretch-1 / toggle.js
Last active February 26, 2016 10:47
JS Добавление элементу класса при клике на другой элемент
// Добавление элементу класса или ид при клике на другой элемент
// Документация http://codepen.io/michaelkaeser/pen/yAKvn
$(document).ready(function() {
$('.toggle').on('click',function(){
$('.fades').toggleClass('one');
});
});