Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
demo0413
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
wildfirecode13
demo0413
Commits
7a8b3f33
Commit
7a8b3f33
authored
Apr 13, 2021
by
wildfirecode13
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
4e3e838e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
41 additions
and
1 deletion
+41
-1
.gitignore
.gitignore
+1
-0
noprize.css
css/noprize.css
+23
-0
index.html
index.html
+9
-0
index.js
js/index.js
+5
-1
noprize.js
js/noprize.js
+3
-0
No files found.
.gitignore
0 → 100644
View file @
7a8b3f33
.DS_Store
\ No newline at end of file
css/noprize.css
0 → 100644
View file @
7a8b3f33
.noprize
{
width
:
7.15rem
;
height
:
8.8rem
;
left
:
0.34rem
;
top
:
2.77rem
;
position
:
absolute
;
}
.noprize
.noprize_bc
{
width
:
7.15rem
;
height
:
8.8rem
;
left
:
0
;
top
:
0
;
position
:
absolute
;
}
.noprize
.more
{
width
:
3.9rem
;
height
:
0.8rem
;
left
:
1.4rem
;
top
:
7.29rem
;
position
:
absolute
;
}
\ No newline at end of file
index.html
View file @
7a8b3f33
...
...
@@ -15,6 +15,7 @@
<link
href=
"./css/app.css"
rel=
"stylesheet"
>
<link
href=
"./css/EdPop.css"
rel=
"stylesheet"
>
<link
href=
"./css/rule.css"
rel=
"stylesheet"
>
<link
href=
"./css/noprize.css"
rel=
"stylesheet"
>
<link
href=
"./css/index.css"
rel=
"stylesheet"
>
</head>
...
...
@@ -38,6 +39,7 @@
<div
class=
"mainPopContainer"
>
<div
class=
"Ed_PopBgCenter"
style=
"background-color: rgba(0, 0, 0, 0.7);display: none;"
>
<div
class=
"Ed_zoom Ed_PopBgCenter"
>
<!-- rule -->
<div
class=
"rule "
style=
"display: none;"
><img
class=
"rule_bc "
src=
"/assets/rule/rule_bc.png"
>
<div
class=
"content "
>
<p><strong>
测试测试测试测试测试测试12313123121223131323121233
</strong></p>
...
...
@@ -69,6 +71,12 @@
<p>
测试
</p>
</div><img
class=
"close "
src=
"/assets/rule/close.png"
>
</div>
<!-- noprize -->
<div
class=
"noprize "
>
<img
class=
"noprize_bc "
src=
"/assets/noprize/noprize_bc.png"
>
<img
class=
"more "
src=
"/assets/noprize/more.png"
>
</div>
</div>
</div>
</div>
...
...
@@ -76,6 +84,7 @@
<script
src=
"./js/popup.js"
></script>
<script
src=
"./js/index.js"
></script>
<script
src=
"./js/rule.js"
></script>
<script
src=
"./js/noprize.js"
></script>
</body>
</html>
\ No newline at end of file
js/index.js
View file @
7a8b3f33
$
(
'.index .rule'
).
click
(
function
(){
showPop
(
'rule'
)
});
\ No newline at end of file
});
setTimeout
(
function
()
{
showPop
(
'noprize'
)
},
1000
)
\ No newline at end of file
js/noprize.js
0 → 100644
View file @
7a8b3f33
$
(
'.noprize .more '
).
click
(
function
(){
closePop
(
'noprize'
)
});
\ No newline at end of file
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