我的网站上有这个文本横幅。我希望它只向使用 cookie 的新访问者显示。我对 JS 知之甚少,所以请帮助我如何仅向首次访问者展示它。
我在基于 Discourse 的这个 Android 论坛站点上使用它,该站点已经基于 Node.js 构建。
<style>
.top {
background: linear-gradient(to right, #141517, #6A9113);
border-radius: 10px;
font-size: 20px;
color: white;
opacity: 0.9;
text-align: center;
padding: 25px;
line-height: 30px;
margin: 10px 0px 30px 0px;
}
</style>
<div class="top">
Welcome to the forum. This is demo text.
</div>