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
// Плавное появление, исчезание блока | |
// Документация 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); |
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
// Добавление элементу класса или ид при клике на другой элемент | |
// Документация http://codepen.io/michaelkaeser/pen/yAKvn | |
$(document).ready(function() { | |
$('.toggle').on('click',function(){ | |
$('.fades').toggleClass('one'); | |
}); | |
}); |
NewerOlder