Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
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
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
周远喜
mes-ui
Commits
e9a6855f
Commit
e9a6855f
authored
Nov 20, 2020
by
周远喜
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ok
parent
c33237df
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
7 deletions
+19
-7
index.vue
pages/bigScreen/index.vue
+1
-0
index.vue
pages/welcome/index.vue
+18
-7
No files found.
pages/bigScreen/index.vue
View file @
e9a6855f
...
...
@@ -46,6 +46,7 @@ export default {
QualityProblem
,
Multiple
,
},
layout
:
'empty'
,
data
()
{
return
{};
},
...
...
pages/welcome/index.vue
View file @
e9a6855f
...
...
@@ -6,6 +6,7 @@
v-for=
"(item, indx) in menus"
:key=
"indx"
@
mouseenter=
"navClick(item, indx)"
@
click=
"clickLi(item,indx)"
>
<Icon
:type=
"item.icons"
class=
"f16"
/>
{{
item
.
name
}}
</li>
...
...
@@ -40,7 +41,8 @@
:title=
"line.start.join() + ':' + line.end.join()"
>
<div
class=
"lineMarker pa"
></div>
<div
class=
"lineMarker a1 pa"
></div>
<div
class=
"lineMarker a2 pa"
></div>
</div>
</div>
</div>
...
...
@@ -181,7 +183,7 @@ export default {
// }
},
clickLi
(
v
)
{
if
(
v
)
{
if
(
v
&&!
v
.
children
)
{
this
.
$router
.
push
(
v
.
url
);
}
this
.
menu
=
false
;
...
...
@@ -287,20 +289,29 @@ export default {
height: 7px;
left: 0;
top: 0;
transform: rotate(50deg) translateY(-4px);
animation: myfirst 1s infinite;
transform: rotate(50deg) translateY(-4px);
background: url("../../assets/images/home/router/linemarker.png")
no-repeat;
}
.a1{
animation: myfirst 3s infinite linear;
}
.a2{
animation: myfirst 3s infinite linear;
animation-delay:1.5s;
}
.a3{
animation: myfirst 3s infinite linear;
animation-delay:1s;
}
@keyframes myfirst {
from {
left:
0%
;
left:
-7px
;
}
to {
left:
85%
;
left:
calc(100% - 7px)
;
}
}
// }
}
.line:hover{
border: 1px dotted red;
...
...
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