ユーザーがページを表示している期間が経過した後、ブラウザウィンドウの上部からバーを下にドロップするにはどうすればよいですか?5秒と言います。このバーは、バーの表示が終了するまで、ページ上のすべてのコンテンツを押し下げます。バーは、ユーザーに何かを知らせる1行のテキストを表示するために使用されます。そして多分それを閉じるためにバーの右側にある小さな小さなX。
現在、これはCSSです。
#infobar {
border-bottom: 5px solid;
height: 25px;
position: fixed;
width: 100%;
border-bottom-color: #F00;
background-color: #9C9;
margin-top:-16px;
}
#infobar .text {
color: #FFFFFF;
float: left;
font-family: arial;
font-size: 12px;
padding: 5px 0;
position: relative;
text-align: center;
width: 100%;
}
#infobar .text a {
color: #FAFAFA;
}
#infobar .text a:hover {
color: #FFE2A0;
}
</style>
そしてHTML:
<div id="infobar">
<div class="text">
....this is the bar text....
</div>
</div>