Last active
February 26, 2016 10:45
-
-
Save Scretch-1/37202d9d67b8c612165c to your computer and use it in GitHub Desktop.
JS Fade. Плавное появление, исчезание элемента
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); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment