Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
任超
/
js.portalStaticPage
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
305780d6
authored
2021-01-26 11:43:31 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:好差评
1 parent
87a75001
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
3 deletions
index.html
staticCss/pageHome.css
staticJs/pageHome.js
index.html
View file @
305780d
...
...
@@ -186,11 +186,12 @@
</ul>
</div>
<div
class=
"login-list"
>
<p>
不动产在线登记服务平台
</p>
<p
class=
"login-list-title"
>
不动产在线登记服务平台
</p>
<a
href=
""
>
个人登录
</a>
<a
href=
""
>
法人登录
</a>
<a
href=
""
>
个人注册
</a>
<a
href=
""
>
法人登录
</a>
<p
class=
"login-list-subtitle"
>
实现企业和群众“最多跑一次” 、“一次也不跑”
</p>
</div>
</div>
</div>
...
...
staticCss/pageHome.css
View file @
305780d
...
...
@@ -632,16 +632,22 @@ div.c_five ul li a img {
background
:
#FFFFFF
;
border
:
1px
solid
#E9E9E9
;
box-sizing
:
border-box
;
padding
:
24px
54
px
;
padding
:
24px
30
px
;
text-align
:
center
;
}
.login-list
p
{
.login-list
.login-list-title
{
color
:
#3C4A66
;
letter-spacing
:
2px
;
font-size
:
24px
;
text-align
:
center
;
margin-bottom
:
20px
;
}
.login-list
.login-list-subtitle
{
font-size
:
18px
;
margin-top
:
10px
;
color
:
#608DE7
;
display
:
none
;
}
.login-list
a
{
display
:
inline-block
;
width
:
80px
;
...
...
staticJs/pageHome.js
View file @
305780d
...
...
@@ -70,6 +70,10 @@ function initData() {
$
(
".convenient-service-list li"
).
mouseout
(
function
()
{
$
(
this
).
find
(
'img'
).
attr
(
'src'
,
$
(
this
).
find
(
'img'
).
attr
(
'pre'
))
})
f
(
getItem
(
'myCookie'
)
&&
getItem
(
'myCookie'
).
username
)
{
$
(
'.login-list a'
).
hide
();
$
(
'.login-list-subtitle'
).
show
();
}
}
// 获取汉字长度
function
strLength
(
str
)
{
...
...
Please
register
or
sign in
to post a comment