login.js
1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
* @作者: Hewitt 邮箱:qiaohewei@126.com 网站:www.hwcyxk.com
* @日期: 2018-10-17 17:23:35
* @最后修改: Hewitt 邮箱:qiaohewei@126.com 网站:www.hwcyxk.com
* @最后修改时间: 2018-10-17 17:23:35
*/
// 登录按钮切换
function HostLogin() {
var login = document.getElementsByClassName("login_con");
login[0].classList.remove("hidden");
login[0].classList.add("show");
login[1].classList.remove("show");
login[1].classList.add("hidden");
type_line
var type_line_dom = document.getElementById('type_line');
type_line_dom.style.float = 'left';
// var tags = document.getElementsByClassName("top_tag");
// tags[0].classList.add("active");
// tags[1].classList.remove("active");
// ad.style.backgroundImage='url(https://static.zcool.cn/v1.1.43/passport4.0/images/login-ground.jpg)';
}
function Joiner() {
var login = document.getElementsByClassName("login_con");
login[0].classList.remove("show");
login[0].classList.add("hidden");
login[1].classList.remove("hidden");
login[1].classList.add("show");
var type_line_dom = document.getElementById('type_line');
type_line_dom.style.float = 'right';
// var tags = document.getElementsByClassName("top_tag");
// tags[1].classList.add("active");
// tags[0].classList.remove("active");
}