Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
lichenggang
/
web_log
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
deeff793
authored
Dec 22, 2020
by
lichenggang
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
优化前端
parent
fd7df7ca
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
159 deletions
src/code/demo.gif
src/code/index.html
src/templates/page.html
src/code/demo.gif
deleted
100644 → 0
View file @
fd7df7ca
1.18 MB
src/code/index.html
deleted
100644 → 0
View file @
fd7df7ca
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
/>
<title>
seelog
</title>
<link
rel=
"shortcut icon"
href=
"http://www.eiguo.cn/favicon.ico"
type=
"image/x-icon"
/>
<!-- <link href="http://cdn.90so.net/layui/2.3.0/css/layui.css" rel="stylesheet" media="screen"> -->
<script
src=
"http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"
></script>
<script
src=
"https://cdn.bootcss.com/html2canvas/0.5.0-beta4/html2canvas.min.js"
></script>
<!-- <script src="http://cdn.90so.net/layui/2.3.0/layui.js"></script> -->
<script>
var
out
=
true
var
filterText
=
""
function
connect
(){
var
ws
=
new
WebSocket
(
"ws://"
+
window
.
location
.
host
+
"/ws"
);
ws
.
onmessage
=
function
(
e
)
{
console
.
log
(
filterText
)
if
(
out
&&
(
filterText
==
""
||
e
.
data
.
indexOf
(
filterText
)
!=
-
1
)){
$
(
'#log'
).
append
(
"
<
pre
style
=
'color: white;font-size: 15px'
>
"+ e.data +"
<
/pre>"
)
.scrollTop
(
$
(
'#log'
)[
0
]
.scrollHeight
)
}
};
ws
.
onclose
=
function
()
{
$
(
'#status'
).
css
(
"background-color"
,
"red"
).
text
(
"链接断开"
)
reConnect
()
}
ws
.
onopen
=
function
()
{
$
(
'#status'
).
css
(
"background-color"
,
"chartreuse"
).
text
(
"连接成功"
)
}
ws
.
onerror
=
function
(
e
)
{
$
(
'#status'
).
css
(
"background-color"
,
"red"
).
text
(
"链接断开"
)
}
}
function
reConnect
(){
setTimeout
(
function
(){
connect
();
},
1000
);
}
connect
()
$
(
function
()
{
// 暂停
$
(
'#pause'
).
click
(
function
()
{
out
=
!
out
if
(
out
){
$
(
this
).
text
(
'暂停'
).
css
(
"background-color"
,
""
)
}
else
{
$
(
this
).
text
(
'已暂停'
).
css
(
"background-color"
,
"red"
)
}
})
// 清屏
$
(
'#clear'
).
click
(
function
()
{
$
(
'#log'
).
empty
()
})
// 截屏
$
(
'#cut'
).
click
(
function
()
{
printPhoto
(
"log"
)
})
// 过滤
$
(
'#filter'
).
on
(
'input'
,
function
()
{
filterText
=
$
(
'#filter'
).
val
()
})
})
// 截屏
function
printPhoto
(
tab
){
html2canvas
(
document
.
querySelector
(
"#"
+
tab
)).
then
(
canvas
=>
{
// 图片导出为 png 格式
var
type
=
'png'
;
var
imgData
=
canvas
.
toDataURL
(
type
);
var
_fixType
=
function
(
type
)
{
type
=
type
.
toLowerCase
().
replace
(
/jpg/i
,
'jpeg'
);
var
r
=
type
.
match
(
/png|jpeg|bmp|gif/
)[
0
];
return
'image/'
+
r
;
};
// 加工image data,替换mime type
imgData
=
imgData
.
replace
(
_fixType
(
type
),
'image/octet-stream'
);
//console.log(imgData);
var
saveFile
=
function
(
data
,
filename
){
var
save_link
=
document
.
createElementNS
(
'http://www.w3.org/1999/xhtml'
,
'a'
);
save_link
.
href
=
data
;
save_link
.
download
=
filename
;
var
event
=
document
.
createEvent
(
'MouseEvents'
);
event
.
initMouseEvent
(
'click'
,
true
,
false
,
window
,
0
,
0
,
0
,
0
,
0
,
false
,
false
,
false
,
false
,
0
,
null
);
save_link
.
dispatchEvent
(
event
);
};
// 下载后的文件名
var
filename
=
'seelog'
+
'.'
+
type
;
// download
saveFile
(
imgData
,
filename
);
});
}
</script>
</head>
<body>
<header>
<h2
id=
"title"
>
实时查看日志信息
<button
id=
"status"
style=
"background-color: darkorange"
>
正在连接...
</button></h2>
<div
class=
"tool"
>
<button
id=
"pause"
>
暂停
</button>
<button
id=
"clear"
>
清屏
</button>
<button
id=
"cut"
>
截图
</button>
<span
style=
"padding:1px;border:1px ; background:#FFF"
><button
style=
"width: auto"
>
过滤
</button><input
id=
"filter"
type=
"text"
></span>
</div>
</header>
<div
id=
"log"
></div>
</body>
<style>
body
{
margin-left
:
2%
}
#title
{
}
#log
{
width
:
96%
;
height
:
800px
;
background-color
:
#181818
;
border
:
1px
#ccc
solid
;
overflow-y
:
scroll
;
margin-top
:
10px
;
padding-left
:
12px
;
float
:
left
;
}
.tool
button
{
height
:
30px
;
width
:
100px
;
font-size
:
medium
;
}
input
{
background-color
:
lightyellow
;
color
:
black
;
font-size
:
medium
;
position
:
absolute
;
height
:
25px
;
}
</style>
</html>
\ No newline at end of file
src/templates/page.html
View file @
deeff793
...
@@ -27,6 +27,8 @@
...
@@ -27,6 +27,8 @@
snsArr
.
forEach
((
item
,
index
)
=>
{
snsArr
.
forEach
((
item
,
index
)
=>
{
if
(
out
&&
(
filterText
==
""
||
item
.
indexOf
(
filterText
)
!=
-
1
))
{
if
(
out
&&
(
filterText
==
""
||
item
.
indexOf
(
filterText
)
!=
-
1
))
{
$
(
'#log'
).
append
(
"
<
pre
style
=
'color: white;font-size: 15px;margin: 3px'
>
" + item + "
<
/pre>"
)
.scrollTop
(
$
(
'#log'
)[
0
]
.scrollHeight
)
$
(
'#log'
).
append
(
"
<
pre
style
=
'color: white;font-size: 15px;margin: 3px'
>
" + item + "
<
/pre>"
)
.scrollTop
(
$
(
'#log'
)[
0
]
.scrollHeight
)
}
else
{
$
(
'#log'
).
append
(
"
<
pre
style
=
'display:none;color: white;font-size: 15px;margin: 3px'
>
" + item + "
<
/pre>"
)
.scrollTop
(
$
(
'#log'
)[
0
]
.scrollHeight
)
}
}
})
})
...
@@ -81,6 +83,19 @@
...
@@ -81,6 +83,19 @@
// 过滤
// 过滤
$
(
'#filter'
).
on
(
'input'
,
function
()
{
$
(
'#filter'
).
on
(
'input'
,
function
()
{
filterText
=
$
(
'#filter'
).
val
()
filterText
=
$
(
'#filter'
).
val
()
$
(
'#log pre'
).
each
(
function
()
{
$
(
this
).
attr
(
"style"
,
"display:block;color: white;font-size: 15px;margin: 3px"
)
})
if
(
filterText
!=
""
){
$
(
'#log pre'
).
each
(
function
()
{
if
(
$
(
this
).
text
().
indexOf
(
filterText
)
==
-
1
)
{
$
(
this
).
attr
(
"style"
,
"display:none"
)
}
})
}
})
})
})
})
...
...
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