你能否用HTML与CSS与JS语言做一个使用教程的弹窗,且弹窗要有关闭按钮必须要成功隐藏弹窗,还有判断用户是否按了弹窗的关闭按钮,如果按了,下一次弹窗会不再出现,并将弹窗的数据放到本地储存,ui请设计的好看点
时间: 2024-05-04 13:18:19 浏览: 77
一个漂亮的前端弹窗,包含关闭按钮,样式清晰好看,可关闭弹窗
3星 · 编辑精心推荐
当然可以!以下是一个使用HTML、CSS和JS语言制作的弹窗:
HTML代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>弹窗使用教程</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="popup">
<div class="popup-content">
<h2>欢迎使用弹窗!</h2>
<p>这是一个使用教程的弹窗。</p>
<button class="close-btn">关闭</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>
```
CSS代码:
```css
.popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: none;
justify-content: center;
align-items: center;
}
.popup-content {
background-color: white;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
text-align: center;
}
.close-btn {
background-color: #ff5b5b;
color: white;
border: none;
border-radius: 5px;
padding: 10px 20px;
margin-top: 20px;
cursor: pointer;
}
```
JS代码:
```js
const popup = document.querySelector('.popup');
const closeBtn = document.querySelector('.close-btn');
// 如果用户之前已经关闭了弹窗,则不再显示弹窗
if (localStorage.getItem('popupClosed')) {
popup.style.display = 'none';
} else {
popup.style.display = 'flex';
}
// 关闭按钮事件监听器
closeBtn.addEventListener('click', () => {
popup.style.display = 'none';
localStorage.setItem('popupClosed', true);
});
```
这个弹窗使用了HTML和CSS中的flex布局来实现居中效果,使用了JS中的localStorage来判断用户是否关闭了弹窗,并把关闭状态存储在本地。如果用户之前已经关闭了弹窗,则不再显示弹窗。如果用户没有关闭弹窗,则点击关闭按钮时会隐藏弹窗并把关闭状态存储在本地。
阅读全文