You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

52 lines
1.0 KiB

/**
* Created by starr on 2017/1/4.
*/
$(function(){
/**
* 自动适配fontsize
* @type {HTMLElement}
*/
var html = document.querySelector('html');
var rem = html.offsetWidth / 6.4;
html.style.fontSize = rem + "px";
})
function change(){
var oDiv = document.getElementById("huobi");
var oDiv1 = document.getElementById("shangcheng");
var oDiv2 = document.getElementById("wauhui");
oDiv.onclick = function ()
{
oDiv1.style.opacity="1";
oDiv2.style.opacity="1";
oDiv.style.opacity="0.1";
};
oDiv1.onclick = function ()
{
oDiv2.style.opacity="1";
oDiv.style.opacity="1";
oDiv1.style.opacity="0.1";
};
oDiv2.onclick = function ()
{
oDiv.style.opacity="1";
oDiv1.style.opacity="1";
oDiv2.style.opacity="0.1";
};
}