Skip to content

Instantly share code, notes, and snippets.

@muhammedzaimtr
Last active June 27, 2016 15:53
Show Gist options
  • Save muhammedzaimtr/3c8aa083d458cd0a73823a27c94a5aa0 to your computer and use it in GitHub Desktop.
Save muhammedzaimtr/3c8aa083d458cd0a73823a27c94a5aa0 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Jquery Ders 2</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<script type="text/javascript">
$(function () {
//Hide Metot Kullanımı
$("p").hide();
// Süreli Hide Metot Kullanımı
$("p").hide(2000);
//Parantezin içine yazdığımız sayi milisaniye cinsindendir ve yazdığımız milisaniye sonra gizlenecektir...
//Show Metot Kullanımı
$("p").show();
// Süreli Show Metot Kullanımı
$("p").show(5000);
//Parantezin içine yazdığımız sayi milisaniye cinsindendir ve yazdığımız milisaniye sonra gizli olan içeriği gösterecektir...
})
</script>
</head>
<body>
<p>Muhammed Zaim Jquery Dersi 2</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment