WEBサイト制作の勉強

WEBサイト制作の勉強の為の解説ブログです。

フェリカテクニカルアカデミー

ハンバーガーボタンの実装(11月18日)

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ハンバーガーボタンの実装</title>
<link rel="stylesheet" href="css/hamburgers.css">
<style>
#box{
width: 300px;
height: 500px;
background-color: burlywood;
transform: translateX(-100%);
transition: 0.3s;
}
#box.move{
transform: translateX(0);
}
</style>
</head>
<body>
<p class="hamburger hamburger--spring" id="ham-btn">
  <span class="hamburger-box">
    <span class="hamburger-inner"></span>
  </span>
</p>

<div id="box"></div>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script>
$(function(){
$('#ham-btn').on('click',function(){
$(this).toggleClass('is-active');
$('#box').toggleClass('move');
});
});
</script>
</body>
</html>