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.
20 lines
1.0 KiB
20 lines
1.0 KiB
! function (n) {
|
|
var e = n.document,
|
|
t = e.documentElement,
|
|
i = 750,
|
|
d = i / 100,
|
|
o = "orientationchange" in n ? "orientationchange" : "resize",
|
|
a = function () {
|
|
var n = t.clientWidth || 320;
|
|
n > 720 && (n = 720), t.style.fontSize = n / d + "px"
|
|
};
|
|
e.addEventListener && (n.addEventListener(o, a, !1), e.addEventListener("DOMContentLoaded", a, !1))
|
|
|
|
$('.lineIcon').click(function() {
|
|
console.log('111')
|
|
$('.close').css('display', 'block');
|
|
$('.line').css('display', 'block');
|
|
})
|
|
|
|
}(window);
|
|
|