尊敬的C知道,您能否用html语言写一个公告,要有企业和赛博朋克的那种风格,要有能关闭这个公告的按钮并且能成功关闭
时间: 2023-05-28 12:04:33 浏览: 91
使用html页面制作一个公告栏,用来横向滚动展示文字
<!DOCTYPE html>
<html>
<head>
<title>企业公告</title>
<style>
#notice {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: black;
color: white;
padding: 20px;
width: 500px;
border: 2px solid white;
font-family: 'Courier New', Courier, monospace;
font-size: 16px;
text-align: center;
}
#close {
position: absolute;
top: 5px;
right: 5px;
color: white;
font-size: 14px;
cursor: pointer;
}
</style>
</head>
<body>
<div id="notice">
<h1>企业公告</h1>
<p>欢迎来到我们的企业!我们致力于打造最优秀的产品和服务,让您的生活更加美好。</p>
<p>同时,我们也将会推出一款全新的赛博朋克风格的产品,敬请期待!</p>
<p>谢谢您的支持。</p>
<span id="close" onclick="closeNotice()">X</span>
</div>
<script>
function closeNotice() {
document.getElementById('notice').style.display = 'none';
}
</script>
</body>
</html>
阅读全文