-
Notifications
You must be signed in to change notification settings - Fork 0
/
35-media.html
54 lines (44 loc) · 1.29 KB
/
35-media.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
text-align: center;
direction: rtl;
}
/* وقتی گوشی در حالت عمودی بود */
@media only screen and (orientation: portrait) {
body {
background-color: #FF5722;
color: #fff;
}
h2.portrait {
display: block;
}
h2.landscape {
display: none;
}
}
/* وقتی گوشی در حالت افقی بود */
@media only screen and (orientation: landscape) {
body {
background-color: #607D8B;
color: #fff;
}
h2.portrait {
display: none;
}
h2.landscape {
display: block;
}
}
</style>
</head>
<body>
<h2 class="portrait">الان در حالت عمودی یا Portrait می باشد</h2>
<h2 class="landscape">الان در حالت افقی یا LandScape می باشید</h2>
</body>
</html>