1. ホーム
  2. Web制作
  3. CSS

[CSSチュートリアル】ピュアCSSでDIVホバーを実現するサンプルコード(固定位置編)

2022-01-13 16:30:56

DIVのホバー効果(固定位置)を実現するためのPure CSSです。IE8, 360, FireFox, Chrome, Safari, Opera, Maxthon, Sogou, Windows of the World, etc. 効果は以下の通りです。

実装コードです。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>DIV hover example - pure CSS implementation</title>
<style type="text/css">
/* set the height to scroll up and down */
body {
height: 1800px;
background:#dddddd;
}

/*div generic style*/
div{
background: #1a59b7;
color:#ffffff;
overflow: hidden;
z-index: 9999;
position: fixed;
padding:5px;
text-align:center;
width: 175px;
height: 22px;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}

/* top-right corner*/
div.right_top{
right: 10px;
top: 10px;
}

/*bottom right corner*/
div.right_bottom{
right: 10px;
bottom: 10px;
}

/* middle of screen*/
div.center_{
right: 45%;
top: 50%;
}

/*top left corner*/
div.left_top{
left: 10px;
top: 10px;
}

/*bottom-left corner*/
div.left_bottom{
left: 10px;
bottom: 10px;
}
</style>
</head>
<body >
<div class="right_top"> I am the top right hover div </div>
<div class="right_bottom"> I am the bottom right hovering div</div>
<div class="center_"> I am the div hovering in the middle of the screen</div>
<div class="left_top"> I am the div hovering in the top left corner</div>
<div class="left_bottom"> I am the bottom left hovering div</div>
</body>
</html>

DIVのホバーサンプルコード(固定位置)を達成するために純粋なCSSのこの記事は、より関連するCSS DIVホバーコンテンツは、スクリプトハウスの過去の記事を検索するか、次の関連記事を閲覧を続けてください、私はあなたが将来的にもっとスクリプトハウスをサポートして願っていますに導入されています!この記事では、DIVのホバーサンプルコードは、この、DIVのホバーサンプルコード(固定位置)。