Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 코드이그나이터
- Nexacro
- CMD
- DDL
- 오라클 초기 셋팅
- ER 마스터 사용법
- 자동 배포
- 코드 처리 시간
- php
- 자바스크립트
- [Eclipse] 이클립스 마켓플레이스 (Marketplace) 사용방법
- 이클립스 프로젝트 변경
- scanner 연습문제
- 코드 정리
- 이클립스 서버연동
- 개발 일기
- PLSQL 설치
- strtotime()
- github
- php 날자 함수
- oracle datatype
- id 체크
- 자바
- 기초 HTML
- 실행파일만들기
- 이클립스
- 톰캣 9.0 설치
- js
- 웹에 데이터를 전송하는 방법
- Oracle
Archives
- Today
- Total
Chillax in dev
[WEB]CSS: Hover 반응선택자 사용방법 본문
728x90
[CSS] Hover 반응 선택자 사용방법
- 자바스크립트 말고 CSS로 Hover 를 적용할 수 있습니다. 흔히들 호버라고 많이 사용하지만 정확한 명칭은 에이치 오버가 맞습니다.
- 마우스가 해당 태그위에 있을 때와 벗어났을 때의 변화를 css로 줄 수 있습니다.
- 반응 선택자
: 사용자의 반응으로 생성되는 특정한 상태를 선택하는 선택자.
- 종류
1. : hover -> 특정 태그에 마우스를 올릴 경우에 반응.
2. : active -> 특정 태그에 마우스를 클릭할 경우에 반응.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
#box01{background:yellow; width:400px; height: 50px; transition-duration:2s;}
/* transition-duration: 2s 2초에걸려서서히 변화주고싶어*/
#box02{background:yellow; width:400px; height: 50px;transition-duration: 2s;}
#box01:hover{background:blue; color: white;}
#box02:hover{background:blue; color: white;}
#box01:active{background: pink; height:800px;}
#box02:active{background: pink; height:800px;}
/* 이옵션은 클릭(클릭후 유지)을 누른 동안에만 변경이된다.*/
#box01:active+#box02{background: red; color:black;}
#box02:active~#box03{background: green; color:red;}
#ul03:hover{
color: red;
border-bottom:1px solid red;
}
</style>
</head>
<body>
<div id="third">
<div id="third_view">
<div id="third_view_left">
<ul id="ul03">
<li> 홈 </li>
<li>현재상영/개봉예정</li>
<li>박스오피스</li>
<li>뉴스</li>
</ul>
</div>
<div id="third_view_right">내평점</div>
</div>
</div>
<div id="box01">
<h1>User Action Selector1</h1>
</div>
<div id="box02">
<h1>User Action Selecto2r</h1>
</div>
<div id="box03">
<h1>User Action Selector3</h1>
</div>
</body>
</html>
|
cs |
728x90
LIST
'WEB' 카테고리의 다른 글
[WEB]CSS: 페이지 꾸미는 팁 shadow - 음영 효과 주는 방법 (0) | 2020.08.10 |
---|---|
[WEB]CSS: 페이지 꾸미는 팁 (colorzilla), gradient(그라데이션) 사용법 (0) | 2020.08.10 |
[WEB]CSS: 기초 font, position, display 속성 등등 (0) | 2020.08.09 |
[WEB] CSS3으로 웹 꾸미기: 다양한 선택자(Selector) (0) | 2020.08.08 |
[WEB] HTML5 태그들 정리 (0) | 2020.08.08 |
Comments