Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
IPC-footer
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Allen Bai
IPC-footer
Commits
5517dd9b
Commit
5517dd9b
authored
Jan 29, 2021
by
Allen Bai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 修改定位方式
parent
3f5da8d9
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
151 additions
and
62 deletions
+151
-62
.prettierrc
.prettierrc
+2
-2
h5_scroll.html
example/inHTML/h5_scroll.html
+41
-0
h5_without_scroll.html
example/inHTML/h5_without_scroll.html
+40
-0
index.html
example/inHTML/index.html
+29
-21
index.ts
src/index.ts
+39
-39
No files found.
.prettierrc
View file @
5517dd9b
...
...
@@ -6,7 +6,7 @@
"jsxBracketSameLine": true,
"arrowParens": "avoid",
"insertPragma": true,
"tabWidth":
4
,
"tabWidth":
2
,
"useTabs": false,
"bracketSpacing": true
}
\ No newline at end of file
}
example/inHTML/h5_scroll.html
0 → 100644
View file @
5517dd9b
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1, maximum-scale=1"
>
<title>
直接用script引入
</title>
<style>
*
{
margin
:
0
;
padding
:
0
;
}
html
,
body
{
background-color
:
rgb
(
35
,
155
,
86
);
}
</style>
</head>
<body>
<div
style=
"height: 200vh;border:5px slateblue solid"
></div>
<script>
(
function
(
e
)
{
const
IPCFooterConfig
=
{}
function
loadScript
()
{
var
r
=
document
.
createElement
(
"script"
);
(
r
.
async
=
!
0
),
(
r
.
src
=
"../../dist/IPCHelper.main.js"
),
(
r
.
crossOrigin
=
"anonymous"
),
(
r
.
onload
=
function
()
{
window
.
__TUIA_IPC_HELPER__
&&
window
.
__TUIA_IPC_HELPER__
.
mountIPCFooter
(
IPCFooterConfig
)
}),
document
.
body
&&
document
.
body
.
appendChild
(
r
);
};
loadScript
()
})(
window
);
</script>
</body>
</html>
example/inHTML/h5_without_scroll.html
0 → 100644
View file @
5517dd9b
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1, maximum-scale=1"
>
<title>
直接用script引入
</title>
<style>
*
{
margin
:
0
;
padding
:
0
;
}
html
,
body
{
background-color
:
rgb
(
35
,
155
,
86
);
}
</style>
</head>
<body>
<script>
(
function
(
e
)
{
const
IPCFooterConfig
=
{}
function
loadScript
()
{
var
r
=
document
.
createElement
(
"script"
);
(
r
.
async
=
!
0
),
(
r
.
src
=
"../../dist/IPCHelper.main.js"
),
(
r
.
crossOrigin
=
"anonymous"
),
(
r
.
onload
=
function
()
{
window
.
__TUIA_IPC_HELPER__
&&
window
.
__TUIA_IPC_HELPER__
.
mountIPCFooter
(
IPCFooterConfig
)
}),
document
.
body
&&
document
.
body
.
appendChild
(
r
);
};
loadScript
()
})(
window
);
</script>
</body>
</html>
example/inHTML/index.html
View file @
5517dd9b
...
...
@@ -3,38 +3,46 @@
<head>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1
, maximum-scale=1
"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1
.0
"
>
<title>
直接用script引入
</title>
<style>
*
{
margin
:
0
;
padding
:
0
;
margin
:
0
;
}
iframe
{
border
:
1px
solid
black
;
display
:
block
;
}
.box
{
margin
:
10px
20px
;
}
.phone
{
width
:
375px
;
height
:
667px
;
}
html
,
body
{
background-color
:
rgb
(
35
,
155
,
86
)
;
.desk
{
width
:
1200px
;
height
:
600px
;
}
</style>
</head>
<body>
<script>
(
function
(
e
)
{
const
IPCFooterConfig
=
{}
function
loadScript
()
{
var
r
=
document
.
createElement
(
"script"
);
(
r
.
async
=
!
0
),
(
r
.
src
=
"../../dist/IPCHelper.main.js"
),
(
r
.
crossOrigin
=
"anonymous"
),
(
r
.
onload
=
function
()
{
window
.
__TUIA_IPC_HELPER__
&&
window
.
__TUIA_IPC_HELPER__
.
mountIPCFooter
(
IPCFooterConfig
)
}),
document
.
body
&&
document
.
body
.
appendChild
(
r
);
};
loadScript
()
})(
window
);
</script>
<div
style=
"display: flex;justify-content: flex-start;align-items: center;flex-wrap: wrap;padding:30px;"
>
<div
class=
"box"
>
<h5>
不带滚动的
</h5>
<iframe
class=
"phone"
src=
"./h5_without_scroll.html"
frameborder=
"0"
></iframe>
</div>
<div
class=
"box"
>
<h5>
带滚动的
</h5>
<iframe
class=
"phone"
src=
"./h5_scroll.html"
frameborder=
"0"
></iframe>
</div>
</div>
</body>
</html>
src/index.ts
View file @
5517dd9b
...
...
@@ -2,59 +2,59 @@
type
Optional
<
T
>
=
{
[
P
in
keyof
T
]?:
T
[
P
]
}
function
getIPCByDomain
(
domain
:
string
)
{
return
new
Promise
((
resolve
,
reject
)
=>
{
resolve
(
'1231232123'
)
})
return
new
Promise
((
resolve
,
reject
)
=>
{
resolve
(
'1231232123'
)
})
}
type
IPCFooterOptions
=
{
domain
?:
string
dom
?:
HTMLElement
footerStyles
?:
Optional
<
CSSStyleDeclaration
>
boardStyles
?:
Optional
<
CSSStyleDeclaration
>
domain
?:
string
dom
?:
HTMLElement
footerStyles
?:
Optional
<
CSSStyleDeclaration
>
boardStyles
?:
Optional
<
CSSStyleDeclaration
>
}
function
addStyles
(
ele
:
HTMLElement
,
styles
:
Optional
<
CSSStyleDeclaration
>
=
{})
{
Object
.
entries
(
styles
).
forEach
(([
key
,
val
])
=>
{
ele
.
style
[
key
]
=
val
})
Object
.
entries
(
styles
).
forEach
(([
key
,
val
])
=>
{
ele
.
style
[
key
]
=
val
})
}
const
defaultFooterStyles
:
Optional
<
CSSStyleDeclaration
>
=
{
width
:
'100vw'
,
position
:
'absolute
'
,
left
:
'0'
,
right
:
'0'
,
bottom
:
'0'
,
display
:
'flex'
,
justifyContent
:
'center'
,
alignItems
:
'center'
width
:
'100vw'
,
position
:
'fixed
'
,
left
:
'0'
,
right
:
'0'
,
bottom
:
'0'
,
display
:
'flex'
,
justifyContent
:
'center'
,
alignItems
:
'center'
}
const
defaultBoardStyles
:
Optional
<
CSSStyleDeclaration
>
=
{
display
:
'inline-block'
,
textDecoration
:
'none'
,
color
:
'#FFF'
,
backgroundColor
:
'rgba(0,0,0,.4)'
,
margin
:
'4px auto'
,
height
:
'22px'
,
lineHeight
:
'22px'
,
padding
:
'0 20px'
,
borderRadius
:
'4px'
,
fontSize
:
'12px'
display
:
'inline-block'
,
textDecoration
:
'none'
,
color
:
'#FFF'
,
backgroundColor
:
'rgba(0,0,0,.4)'
,
margin
:
'4px auto'
,
height
:
'22px'
,
lineHeight
:
'22px'
,
padding
:
'0 20px'
,
borderRadius
:
'4px'
,
fontSize
:
'12px'
}
async
function
mountIPCFooter
(
opts
:
IPCFooterOptions
)
{
const
icpNumber
=
await
getIPCByDomain
(
opts
.
domain
||
location
.
host
)
const
IPCFooter
=
document
.
createElement
(
'div'
)
const
IPCBoard
=
document
.
createElement
(
'a'
)
const
targetDom
=
opts
.
dom
||
document
.
querySelector
(
'body'
)
IPCFooter
.
id
=
'__IPC_footer__'
IPCBoard
.
id
=
'__IPC_board__'
addStyles
(
IPCFooter
,
{
...
defaultFooterStyles
,
...(
opts
.
footerStyles
||
{})
})
addStyles
(
IPCBoard
,
{
...
defaultBoardStyles
,
...(
opts
.
footerStyles
||
{})
})
IPCBoard
.
innerText
=
`浙ICP备
${
icpNumber
}
号`
IPCFooter
.
appendChild
(
IPCBoard
)
targetDom
.
appendChild
(
IPCFooter
)
const
icpNumber
=
await
getIPCByDomain
(
opts
.
domain
||
location
.
host
)
const
IPCFooter
=
document
.
createElement
(
'div'
)
const
IPCBoard
=
document
.
createElement
(
'a'
)
const
targetDom
=
opts
.
dom
||
document
.
querySelector
(
'body'
)
IPCFooter
.
id
=
'__IPC_footer__'
IPCBoard
.
id
=
'__IPC_board__'
addStyles
(
IPCFooter
,
{
...
defaultFooterStyles
,
...(
opts
.
footerStyles
||
{})
})
addStyles
(
IPCBoard
,
{
...
defaultBoardStyles
,
...(
opts
.
footerStyles
||
{})
})
IPCBoard
.
innerText
=
`浙ICP备
${
icpNumber
}
号`
IPCFooter
.
appendChild
(
IPCBoard
)
targetDom
.
appendChild
(
IPCFooter
)
}
export
default
{
getIPCByDomain
,
mountIPCFooter
}
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