Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
html-shot
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
劳工
html-shot
Commits
2a890870
Commit
2a890870
authored
Apr 01, 2021
by
rockyl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
init
parent
769465b5
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
64 additions
and
6 deletions
+64
-6
.yarn-integrity
node_modules/.yarn-integrity
+48
-0
package.json
package.json
+1
-1
dom-parser.ts
src/dom-parser.ts
+2
-1
toCanvas.ts
src/toCanvas.ts
+5
-2
test.html
test.html
+4
-2
yarn.lock
yarn.lock
+4
-0
No files found.
node_modules/.yarn-integrity
0 → 100644
View file @
2a890870
{
"systemParams": "darwin-x64-72",
"modulesFolders": [],
"flags": [],
"linkedModules": [
"@spark/animation",
"@spark/api-base",
"@spark/api-common",
"@spark/common-helpers",
"@spark/projectx",
"@spark/share",
"@spark/ui",
"@spark/utils",
"alias-parser",
"code-mix",
"deviljs",
"duiba-utils",
"fyge",
"html-shot",
"init-project",
"package-readme-generator",
"props-compute",
"psd-parse-web",
"qunity",
"qunity-cli",
"qunity-pixi",
"qunity-scene",
"scss-simple-parser",
"sheet-packer",
"spark-cli",
"spark-test-lib",
"spark-utils",
"spark-wrapper-fyge",
"test",
"tiny-image",
"tree-dsl-react",
"visual-code",
"visual-process",
"zeroing-code-divider",
"zeroing-pack",
"zeroing-template-fill",
"zrender"
],
"topLevelPatterns": [],
"lockfileEntries": {},
"files": [],
"artifacts": {}
}
\ No newline at end of file
package.json
View file @
2a890870
{
{
"name"
:
"html-shot"
,
"name"
:
"html-shot"
,
"version"
:
"1.0.1
6
"
,
"version"
:
"1.0.1
7
"
,
"main"
:
"dist/index.js"
,
"main"
:
"dist/index.js"
,
"types"
:
"types/index.d.ts"
,
"types"
:
"types/index.d.ts"
,
"license"
:
"
MIT
"
,
"license"
:
"
MIT
"
,
...
...
src/dom-parser.ts
View file @
2a890870
...
@@ -28,9 +28,10 @@ const includeStyleKeys = [
...
@@ -28,9 +28,10 @@ const includeStyleKeys = [
export
function
parseDom
(
el
:
HTMLElement
=
document
.
body
)
{
export
function
parseDom
(
el
:
HTMLElement
=
document
.
body
)
{
const
{
left
:
pX
,
top
:
pY
,
width
,
height
}
=
el
.
getBoundingClientRect
();
const
{
left
:
pX
,
top
:
pY
,
width
,
height
}
=
el
.
getBoundingClientRect
();
let
nodes
=
[]
,
skip
=
false
;
let
nodes
=
[];
walkNode
(
el
,
function
(
childNode
)
{
walkNode
(
el
,
function
(
childNode
)
{
let
vNode
,
bound
,
node
,
isText
;
let
vNode
,
bound
,
node
,
isText
;
let
skip
=
false
;
switch
(
childNode
.
nodeName
)
{
switch
(
childNode
.
nodeName
)
{
case
'IMG'
:
case
'IMG'
:
node
=
childNode
;
node
=
childNode
;
...
...
src/toCanvas.ts
View file @
2a890870
...
@@ -77,12 +77,15 @@ export async function toCanvas(data: ICData, options: RenderOptions = {}, callba
...
@@ -77,12 +77,15 @@ export async function toCanvas(data: ICData, options: RenderOptions = {}, callba
nodes
.
forEach
((
n
)
=>
{
nodes
.
forEach
((
n
)
=>
{
if
(
n
.
type
==
NodeType
.
IMAGE
)
{
//图片标签
if
(
n
.
type
==
NodeType
.
IMAGE
)
{
//图片标签
p
.
push
(
p
.
push
(
new
Promise
((
r
)
=>
{
new
Promise
((
r
esolve
,
reject
)
=>
{
let
img
=
new
Image
();
let
img
=
new
Image
();
img
.
crossOrigin
=
'anonymous'
img
.
crossOrigin
=
'anonymous'
img
.
onload
=
()
=>
{
img
.
onload
=
()
=>
{
n
.
img
=
img
;
n
.
img
=
img
;
r
()
resolve
()
}
img
.
onerror
=
()
=>
{
reject
(
`html shot error: can't fetch image[
${
img
.
src
}
]`
);
}
}
img
.
src
=
n
.
src
;
img
.
src
=
n
.
src
;
})
})
...
...
test.html
View file @
2a890870
...
@@ -12,6 +12,8 @@
...
@@ -12,6 +12,8 @@
background-color
:
orange
;
background-color
:
orange
;
border-radius
:
2.00rem
;
border-radius
:
2.00rem
;
border
:
0.1rem
solid
blue
;
border
:
0.1rem
solid
blue
;
width
:
5.20rem
;
height
:
4.40rem
;
}
}
.bg
{
.bg
{
...
@@ -46,8 +48,8 @@
...
@@ -46,8 +48,8 @@
</head>
</head>
<body>
<body>
<div
id=
"poster"
class=
"poster"
>
<div
id=
"poster"
class=
"poster"
>
<
div
class=
"bg"
></div
>
<
!--<div class="bg"></div>--
>
<img
class=
"avatar"
src=
"//yun.duiba.com.cn/aurora/14e3d0fa0e1ff54553a2c8c094b1caffd90f0a43.png"
/>
<img
class=
"avatar"
src=
"//yun.duiba.com.cn/aurora/14e3d0fa0e1ff54553a2c8c094b1caffd90f0a43.png"
style=
"display: none"
/>
<!--<canvas id="canvas" style="position: absolute; left: 10px; top: 10px;"></canvas>
<!--<canvas id="canvas" style="position: absolute; left: 10px; top: 10px;"></canvas>
<p class="ppp">
<p class="ppp">
a<br/>bcdefghij
a<br/>bcdefghij
...
...
yarn.lock
0 → 100644
View file @
2a890870
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
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