Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
GaoQuYingJiH5-ASD
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xinzhedeai
GaoQuYingJiH5-ASD
Commits
2e866f7c
Commit
2e866f7c
authored
Mar 19, 2025
by
xinzhedeai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
yh
parent
163efa62
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
387 additions
and
213 deletions
+387
-213
flexible.js
sdk/flexible.js
+35
-0
_shanghu.html
src/_shanghu.html
+352
-213
No files found.
sdk/flexible.js
View file @
2e866f7c
...
...
@@ -2,6 +2,40 @@
var
docEl
=
document
.
documentElement
var
dpr
=
window
.
devicePixelRatio
||
1
// 获取当前值
const
dpr11
=
window
.
devicePixelRatio
;
console
.
log
(
`设备像素比:
${
dpr11
}
`
);
function
getBrowserInfo
()
{
const
userAgent
=
navigator
.
userAgent
.
toLowerCase
();
console
.
log
(
userAgent
)
let
browser
=
'
Unknown
'
;
// 主流浏览器判断
if
(
userAgent
.
includes
(
'
edg/
'
))
{
browser
=
'
Microsoft Edge
'
;
}
else
if
(
userAgent
.
includes
(
'
chrome
'
))
{
browser
=
'
Chrome
'
;
}
else
if
(
userAgent
.
includes
(
'
firefox
'
))
{
browser
=
'
Firefox
'
;
}
else
if
(
userAgent
.
includes
(
'
safari
'
))
{
browser
=
'
Safari
'
;
}
else
if
(
userAgent
.
includes
(
'
trident
'
)
||
userAgent
.
includes
(
'
msie
'
))
{
browser
=
'
Internet Explorer
'
;
}
// 版本号提取(示例:Chrome/120.0.0.0)
const
versionMatch
=
userAgent
.
match
(
/
(
edg|chrome|firefox|safari|version|rv:
)[\s\/
:
]([\d
.
]
+
)
/i
);
const
version
=
versionMatch
?
versionMatch
[
2
]
:
'
Unknown
'
;
return
{
browser
,
version
};
}
// 打印日志
const
browserInfo
=
getBrowserInfo
();
console
.
log
(
`浏览器:
${
browserInfo
.
browser
}
,版本:
${
browserInfo
.
version
}
`
);
// adjust body font size
function
setBodyFontSize
()
{
if
(
document
.
body
)
{
...
...
@@ -16,6 +50,7 @@
// set 1rem = viewWidth / 7.5 // 使用7.5, 使得在750px的设计稿中,1rem = 100px换算十分方便!!!!!!!!
function
setRemUnit
()
{
var
rem
=
docEl
.
clientWidth
/
7.5
console
.
log
(
'
rem
'
,
rem
)
docEl
.
style
.
fontSize
=
rem
+
'
px
'
}
...
...
src/_shanghu.html
View file @
2e866f7c
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment