Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
libai
/
footseen-large-website
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
8ab6c2a3
authored
Jun 28, 2022
by
libai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
测试
parent
2060a314
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
77 additions
and
0 deletions
yazhaiTest/css/neck.css
yazhaiTest/css/neck.less
yazhaiTest/lib/login.js
yazhaiTest/room/css/room.css
yazhaiTest/room/css/room.less
yazhaiTest/room/liveRoom.html
yazhaiTest/space/css/index.css
yazhaiTest/space/css/index.less
yazhaiTest/css/neck.css
View file @
8ab6c2a3
...
...
@@ -7,9 +7,22 @@
.side-tag-ul
::-webkit-scrollbar-thumb
{
background
:
#E53985
!important
;
}
.side-tag-ul
::-moz-scrollbar
{
width
:
3px
!important
;
}
.side-tag-ul
::-moz-scrollbar-track
{
background
:
#E5E5E5
!important
;
}
.side-tag-ul
::-moz-scrollbar-thumb
{
background
:
#E53985
!important
;
}
body
::-webkit-scrollbar
{
display
:
none
;
}
html
*
{
scrollbar-color
:
#E53985
#E5E5E5
;
scrollbar-width
:
thin
;
}
.m-box
{
width
:
1440px
;
margin
:
0
auto
;
...
...
yazhaiTest/css/neck.less
View file @
8ab6c2a3
...
...
@@ -7,9 +7,25 @@
.side-tag-ul::-webkit-scrollbar-thumb{
background: #E53985 !important;
}
.side-tag-ul::-moz-scrollbar{
width: 3px !important;
}
.side-tag-ul::-moz-scrollbar-track{
background: #E5E5E5 !important;
}
.side-tag-ul::-moz-scrollbar-thumb{
background: #E53985 !important;
}
body::-webkit-scrollbar{
display:none;
}
html{
*{
scrollbar-color:#E53985 #E5E5E5;
scrollbar-width:thin;
}
}
// .neck-nav{
// height: 60px;
// width: 100%;
...
...
yazhaiTest/lib/login.js
View file @
8ab6c2a3
...
...
@@ -643,6 +643,7 @@ function loginGo(){
$
(
".login-input-phone .login-input-phone-span"
).
text
(
'+'
+
phoneNum
+
''
)
$
(
".nation-search"
).
hide
()
})
$
(
".login-box2 .login-submit-btn"
).
on
(
"click"
,
function
(){
if
(
$
(
".login-box2 .login-input1"
).
val
()
==
''
){
layer
.
msg
(
"請輸入您的手機號"
)
...
...
@@ -691,6 +692,40 @@ function loginGo(){
}
})
})
$
(
".login-box3 .login-input2"
).
on
(
"keydown"
,
function
(
event
){
if
(
event
.
keyCode
!=
"13"
)
{
return
}
if
(
$
(
".login-box3 .login-input1"
).
val
().
length
<
6
){
layer
.
msg
(
"請輸入您的手機號碼"
)
return
;
}
if
(
$
(
".login-box3 .login-input2"
).
val
().
length
<
6
){
layer
.
msg
(
"請輸入您的密碼"
)
return
;
}
$
.
ajax
({
url
:
$ip
+
'user/phoneLogin'
,
data
:{
countrycode
:
phoneNum
,
phone
:
$
(
".login-box3 .login-input1"
).
val
(),
pwd
:
$
(
".login-box3 .login-input2"
).
val
(),
// pass:true,
pageID
:
localStorage
.
canvasCode
},
success
:
function
(
data
){
console
.
log
(
'手機號登錄'
,
data
)
if
(
data
.
code
!=
1
){
layer
.
msg
(
data
.
msg
);
return
;
}
localStorage
.
token
=
data
.
token
localStorage
.
uid
=
data
.
uid
layer
.
closeAll
()
setTimeout
(
function
(){
window
.
location
.
reload
()
},
500
)
}
})
})
$
(
".login-box3 .login-submit-btn"
).
on
(
"click"
,
function
(){
if
(
$
(
".login-box3 .login-input1"
).
val
().
length
<
6
){
layer
.
msg
(
"請輸入您的手機號碼"
)
...
...
yazhaiTest/room/css/room.css
View file @
8ab6c2a3
...
...
@@ -6,6 +6,9 @@
body
::-webkit-scrollbar
{
display
:
none
;
}
html
*
{
scrollbar-width
:
none
;
}
.mc-material-box
{
width
:
1440px
;
height
:
68px
;
...
...
yazhaiTest/room/css/room.less
View file @
8ab6c2a3
...
...
@@ -6,6 +6,11 @@
body::-webkit-scrollbar{
display:none;
}
html{
*{
scrollbar-width: none;
}
}
.mc-material-box{
width: 1440px;
height: 68px;
...
...
yazhaiTest/room/liveRoom.html
View file @
8ab6c2a3
...
...
@@ -482,6 +482,7 @@
<script
async
defer
crossorigin=
"anonymous"
src=
"https://connect.facebook.net/en_US/sdk.js"
></script>
<script>
$
(
function
()
{
if
(
localStorage
.
canvasCode
==
undefined
)
window
.
location
.
href
=
'../pc.html'
if
(
sessionStorage
.
roomId
==
undefined
||
sessionStorage
.
roomId
==
'undefined'
)
window
.
location
.
href
=
'../pc.html'
var
flvPlayer
...
...
yazhaiTest/space/css/index.css
View file @
8ab6c2a3
...
...
@@ -318,6 +318,7 @@ body::-webkit-scrollbar {
position
:
absolute
;
left
:
110px
;
top
:
43px
;
cursor
:
pointer
;
}
.myRoom-tips-p
{
color
:
#999999
;
...
...
@@ -347,6 +348,7 @@ body::-webkit-scrollbar {
left
:
174px
;
top
:
26px
;
text-indent
:
0
;
cursor
:
pointer
;
}
.myRoom-ul
{
width
:
1100px
;
...
...
yazhaiTest/space/css/index.less
View file @
8ab6c2a3
...
...
@@ -326,6 +326,7 @@ body::-webkit-scrollbar {
position: absolute;
left: 110px;
top: 43px;
cursor: pointer;
}
.myRoom-tips-p{
color: #999999;
...
...
@@ -355,6 +356,7 @@ body::-webkit-scrollbar {
left: 174px;
top: 26px;
text-indent: 0;
cursor: pointer;
}
.myRoom-ul{
// margin-left: 50px;
...
...
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