标签:触摸 call comment 连续 pyc 微软雅黑 设计 保存 区分
1
2
3
|
/* 移动端定义字体的代码 */ body{ font-family : Helvetica ;} |
001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
041
042
043
044
045
046
047
048
049
050
051
052
053
054
055
056
057
058
059
060
061
062
063
064
065
066
067
068
069
070
071
072
073
074
075
076
077
078
079
080
081
082
083
084
085
086
087
088
089
090
091
092
093
094
095
096
097
098
099
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
@media only screen and ( max-width : 1080px ), only screen and (max-device- width : 1080px ) { html, body { font-size : 168.75px ; } } @media only screen and ( max-width : 960px ), only screen and (max-device- width : 960px ) { html, body { font-size : 150px ; } } @media only screen and ( max-width : 800px ), only screen and (max-device- width : 800px ) { html, body { font-size : 125px ; } } @media only screen and ( max-width : 720px ), only screen and (max-device- width : 720px ) { html, body { font-size : 112.5px ; } } @media only screen and ( max-width : 640px ), only screen and (max-device- width : 640px ) { html, body { font-size : 100px ; } } @media only screen and ( max-width : 600px ), only screen and (max-device- width : 600px ) { html, body { font-size : 93.75px ; } } @media only screen and ( max-width : 540px ), only screen and (max-device- width : 540px ) { html, body { font-size : 84.375px ; } } @media only screen and ( max-width : 480px ), only screen and (max-device- width : 480px ) { html, body { font-size : 75px ; } } @media only screen and ( max-width : 414px ), only screen and (max-device- width : 414px ) { html, body { font-size : 64.6875px ; } } @media only screen and ( max-width : 400px ), only screen and (max-device- width : 400px ) { html, body { font-size : 62.5px ; } } @media only screen and ( max-width : 375px ), only screen and (max-device- width : 375px ) { html, body { font-size : 58.59375px ; } } @media only screen and ( max-width : 360px ), only screen and (max-device- width : 360px ) { html, body { font-size : 56.25px ; } } @media only screen and ( max-width : 320px ), only screen and (max-device- width : 320px ) { html, body { font-size : 50px ; } } @media only screen and ( max-width : 240px ), only screen and (max-device- width : 240px ) { html, body { font-size : 37.5px ; } } |
1
2
3
4
5
6
7
8
9
|
//例如图片宽高为: 200px * 200px ,那么写法如下 .css{ width : 100px ; height : 100px ;background- size : 100px 100px ;} 其它元素的取值为原来的 1 / 2 ,例如视觉稿 40px 的字体,使用样式的写法为 20px .css{ font-size : 20px } |
1
2
3
|
input::-webkit-input-placeholder{ color : #AAAAAA ;} input:focus::-webkit-input-placeholder{ color : #EEEEEE ;} |
1
2
3
4
5
6
7
8
9
|
.user-select- none { -webkit-user-select: none ; /* Chrome all / Safari all */ -moz-user-select: none ; /* Firefox all (移动端不需要) */ -ms-user-select: none ; /* IE 10+ */ } |
1
2
3
4
5
|
html { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } |
1
|
img {-webkit-touch-callout: none ; } |
<ignore_js_op>
标签:触摸 call comment 连续 pyc 微软雅黑 设计 保存 区分
原文地址:https://www.cnblogs.com/heimaguangzhou/p/11430915.html