PR
スポンサーリンク

JavaScriptで書かれたモーダルウィンドウをVue.jsに書き換える

Vue.js不使用

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modal Example</title>
<style>
/* モーダルウィンドウのスタイル */
.modal {
  display: none; /* 最初は非表示 */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4); /* モーダル背景の透明度 */
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
</style>
</head>
<body>

<div>
  <button id="openBtn">Open Modal</button>
  <!-- モーダルウィンドウ -->
  <div id="modal" class="modal">
    <div class="modal-content">
      <span class="close" id="closeBtn">&times;</span>
      <p>モーダルウィンドウの内容</p>
    </div>
  </div>
</div>

<script>
// モーダルウィンドウの表示・非表示を制御するJavaScriptコード
document.addEventListener('DOMContentLoaded', function() {
  const openBtn = document.getElementById('openBtn');
  const modal = document.getElementById('modal');
  const closeBtn = document.getElementById('closeBtn');

  openBtn.addEventListener('click', function() {
    modal.style.display = 'block';
  });

  closeBtn.addEventListener('click', function() {
    modal.style.display = 'none';
  });

  window.addEventListener('click', function(event) {
    if (event.target == modal) {
      modal.style.display = 'none';
    }
  });
});
</script>

</body>
</html>

Vue.js使用

<template>
  <div>
    <button @click="openModal">Open Modal</button>

    <!-- モーダルウィンドウ -->
    <div v-if="isModalOpen" class="modal">
      <div class="modal-content">
        <span class="close" @click="closeModal">&times;</span>
        <p>モーダルウィンドウの内容</p>
      </div>
    </div>
  </div>
</template>

<script>
export default {
  data() {
    return {
      isModalOpen: false
    };
  },
  methods: {
    openModal() {
      this.isModalOpen = true;
    },
    closeModal() {
      this.isModalOpen = false;
    }
  }
};
</script>

<style>
/* モーダルウィンドウのスタイル */
.modal {
  display: none; /* 最初は非表示 */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4); /* モーダル背景の透明度 */
  display: block; /* モーダルウィンドウを表示する */
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
</style>

コメント

タイトルとURLをコピーしました