Commit 8ab6c2a3 by libai

测试

parent 2060a314
......@@ -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;
......
......@@ -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%;
......
......@@ -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("請輸入您的手機號碼")
......
......@@ -6,6 +6,9 @@
body::-webkit-scrollbar {
display: none;
}
html * {
scrollbar-width: none;
}
.mc-material-box {
width: 1440px;
height: 68px;
......
......@@ -6,6 +6,11 @@
body::-webkit-scrollbar{
display:none;
}
html{
*{
scrollbar-width: none;
}
}
.mc-material-box{
width: 1440px;
height: 68px;
......
......@@ -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
......
......@@ -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;
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment