728x90
안녕하세요, 이번 게시글에서는 html, css로 tooltip을 구현해보겠습니다.
우선 시연 영상부터 보여드리겠습니다.
다음은 전체 코드입니다.
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="tooltip">
마우스를 올려보세요
<span class="tooltiptext">여기는 툴팁 내용!</span>
</div>
</body>
</html>
<style>
/* Tooltip container */
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
cursor: pointer; /* Change cursor style on hover */
}
/* Tooltip text */
.tooltip .tooltiptext {
visibility: hidden;
width: 160px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 8px 0;
position: absolute;
z-index: 1;
top: 125%; /* Position tooltip below the element */
left: 50%;
margin-left: -80px; /* Use half of the width value */
opacity: 0;
transition: opacity 0.3s;
box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3); /* Add shadow effect */
}
/* Tooltip arrow */
.tooltip .tooltiptext::after {
content: "";
position: absolute;
bottom: 100%; /* Arrow on top of the tooltip */
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent transparent #555 transparent; /* Arrow color and direction */
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
</style>
'HTML/CSS' 카테고리의 다른 글
[HTML/CSS] 다크모드 구현하기 (0) | 2024.01.20 |
---|---|
[HTML/CSS] tailwind를 사용해서 간단한 todo 리스트 만들기 (0) | 2024.01.16 |
[HTML/CSS] Bowser 라이브러리를 통해 오페라 브라우저인 경우 css 스타일 바꾸기 (0) | 2024.01.07 |
[HTML/CSS] Bowser 라이브러리를 통해 브라우저 이름과 버전 정보 가져오기 (0) | 2023.12.29 |
[HTML/CSS] Tailwind로 이미지에 그림자 및 회전 효과를 적용할 수 있는 카드뷰 만들기 (0) | 2023.12.20 |