0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

slideUp slideDown

Last updated at Posted at 2019-11-12

slideUpとslideDownを使って要素を出したり消したりする

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>slideUpDown</title>
<link rel="stylesheet" href="assets/style.css">
<!-- グーグルからライブラリを取得 -->
<script <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<p class="click-here"></p>
<div class="youso"></div>

<script>
$(function() {
	$(".click-here").click(function () {
	  if ($("div:first").is(":hidden")) {
            //1秒かけてスライドダウン・アップ
	    $("div").slideDown(1000);
	  } else {
	    $("div").slideUp(1000);
	  }
	});
});
</script>

</body>
</html>
.click-here{
	dsplay: inline-block;
	width: 50px;
	height: 50px;
	background-color: pink;
	text-align: center;
	line-height: 50px;
	border-radius: 30px;

}
.youso { 
	background:#3d9a44; 
	margin:3px; 
	width:80px;
	height:40px; 
	/* 最初は要素を隠しておく */
	display: none;
}

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?