Skip to content

Instantly share code, notes, and snippets.

@Scretch-1
Last active February 26, 2016 10:45
Show Gist options
  • Save Scretch-1/37202d9d67b8c612165c to your computer and use it in GitHub Desktop.
Save Scretch-1/37202d9d67b8c612165c to your computer and use it in GitHub Desktop.
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);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment