Homepage-imsyy/js/main.js

489 lines
12 KiB
JavaScript
Raw Normal View History

2022-06-20 13:20:45 +00:00
/*
作者: imsyy
主页https://www.imsyy.top/
GitHubhttps://github.com/imsyy/home
版权所有请勿删除
*/
2022-03-04 10:52:51 +00:00
//弹窗样式
iziToast.settings({
timeout: 10000,
progressBar: false,
close: false,
closeOnEscape: true,
position: "topCenter",
transitionIn: "bounceInDown",
transitionOut: "flipOutX",
displayMode: "replace",
layout: "1",
backgroundColor: "#00000040",
titleColor: "#efefef",
messageColor: "#efefef",
icon: "Fontawesome",
iconColor: "#efefef",
2022-03-04 10:52:51 +00:00
});
2022-06-30 03:58:43 +00:00
/* 鼠标样式 */
const body = document.querySelector("body");
const element = document.getElementById("g-pointer-1");
const element2 = document.getElementById("g-pointer-2");
const halfAlementWidth = element.offsetWidth / 2;
const halfAlementWidth2 = element2.offsetWidth / 2;
function setPosition(x, y) {
element2.style.transform = `translate(${x - halfAlementWidth2 + 1}px, ${
y - halfAlementWidth2 + 1
}px)`;
2022-06-30 03:58:43 +00:00
}
body.addEventListener("mousemove", (e) => {
window.requestAnimationFrame(function () {
setPosition(e.clientX, e.clientY);
});
2022-06-30 03:58:43 +00:00
});
2022-03-04 10:52:51 +00:00
//加载完成后执行
window.addEventListener(
"load",
function () {
2022-03-04 10:52:51 +00:00
//载入动画
$("#loading-box").attr("class", "loaded");
$("#bg").css(
"cssText",
"transform: scale(1);filter: blur(0px);transition: ease 1.5s;"
);
$(".cover").css("cssText", "opacity: 1;transition: ease 1.5s;");
$("#section").css(
"cssText",
"transform: scale(1) !important;opacity: 1 !important;filter: blur(0px) !important"
);
2022-03-04 10:52:51 +00:00
//用户欢迎
setTimeout(function () {
iziToast.show({
timeout: 2500,
icon: false,
title: hello,
message: "欢迎来到我的主页",
});
2022-03-04 10:52:51 +00:00
}, 800);
2022-06-20 13:20:45 +00:00
//延迟加载音乐播放器
2022-08-02 02:25:29 +00:00
let element = document.createElement("script");
2022-06-20 13:20:45 +00:00
element.src = "./js/music.js";
document.body.appendChild(element);
2022-08-03 11:33:01 +00:00
//中文字体缓加载-此处写入字体源文件 (暂时弃用)
2022-06-21 04:02:27 +00:00
//先行加载简体中文子集,后续补全字集
2022-06-21 07:30:02 +00:00
//由于压缩过后的中文字体仍旧过大,可转移至对象存储或 CDN 加载
2022-08-03 11:33:01 +00:00
// const font = new FontFace(
// "MiSans",
// "url(" + "./font/MiSans-Regular.woff2" + ")"
// );
// document.fonts.add(font);
2022-06-20 13:20:45 +00:00
2022-08-04 02:41:47 +00:00
//移动端去除鼠标样式
if (Boolean(window.navigator.userAgent.match(/AppWebKit.*Mobile.*/))) {
$("#g-pointer-2").css("display", "none");
2022-08-04 02:41:47 +00:00
}
},
false
);
2022-01-21 05:39:47 +00:00
setTimeout(function () {
$("#loading-text").html("字体及文件加载可能需要一定时间");
2022-02-10 08:09:09 +00:00
}, 3000);
2022-01-21 05:39:47 +00:00
2022-07-27 02:53:34 +00:00
// 新春灯笼 需要时可取消注释
// new_element=document.createElement("link");
// new_element.setAttribute("rel","stylesheet");
// new_element.setAttribute("type","text/css");
// new_element.setAttribute("href","./css/lantern.css");
// document.body.appendChild(new_element);
// new_element=document.createElement("script");
// new_element.setAttribute("type","text/javascript");
// new_element.setAttribute("src","./js/lantern.js");
// document.body.appendChild(new_element);
2022-02-03 08:05:44 +00:00
2021-09-25 14:57:18 +00:00
//获取一言
fetch("https://v1.hitokoto.cn?max_length=24")
.then((response) => response.json())
.then((data) => {
$("#hitokoto_text").html(data.hitokoto);
$("#from_text").html(data.from);
})
.catch(console.error);
2021-09-25 14:57:18 +00:00
2022-08-02 02:25:29 +00:00
let times = 0;
$("#hitokoto").click(function () {
if (times == 0) {
times = 1;
let index = setInterval(function () {
times--;
if (times == 0) {
clearInterval(index);
}
}, 1000);
fetch("https://v1.hitokoto.cn?max_length=24")
.then((response) => response.json())
.then((data) => {
$("#hitokoto_text").html(data.hitokoto);
$("#from_text").html(data.from);
})
.catch(console.error);
} else {
iziToast.show({
timeout: 1000,
icon: "fa-solid fa-circle-exclamation",
message: "你点太快了吧",
});
}
2022-05-22 05:50:08 +00:00
});
// 获取天气
// 请前往 https://www.mxnzp.com/doc/list 申请 app_id 和 app_secret
const mainKey = "57eaea5833ff1616cfd1ff2c4cf9b58a"; // 高德开发者 Key
const getWeather = () => {
fetch(`https://restapi.amap.com/v3/ip?key=${mainKey}`)
.then((response) => response.json())
.then((res) => {
const adcode = res.adcode;
$("#city_text").html(res.city);
fetch(
`https://restapi.amap.com/v3/weather/weatherInfo?key=${mainKey}&city=${adcode}`
)
.then((response) => response.json())
.then((res) => {
if (res.status) {
$("#wea_text").html(res.lives[0].weather);
$("#tem_text").html(res.lives[0].temperature + "°C ");
$("#win_text").html(res.lives[0].winddirection + "风");
$("#win_speed").html(res.lives[0].windpower + "级");
} else {
console.error("天气信息获取失败");
iziToast.show({
timeout: 2000,
icon: "fa-solid fa-cloud-sun",
message: "天气信息获取失败",
});
}
});
})
.catch((err) => {
console.error("天气信息获取失败:" + err);
iziToast.show({
timeout: 2000,
icon: "fa-solid fa-cloud-sun",
message: "天气信息获取失败",
});
});
};
2022-07-07 13:42:10 +00:00
getWeather();
2022-08-02 02:25:29 +00:00
let wea = 0;
$("#upWeather").click(function () {
if (wea == 0) {
wea = 1;
let index = setInterval(function () {
wea--;
if (wea == 0) {
clearInterval(index);
}
}, 60000);
getWeather();
iziToast.show({
timeout: 2000,
icon: "fa-solid fa-cloud-sun",
message: "实时天气已更新",
});
} else {
iziToast.show({
timeout: 1000,
icon: "fa-solid fa-circle-exclamation",
message: "请稍后再更新哦",
});
}
2022-07-07 13:42:10 +00:00
});
2021-09-25 14:57:18 +00:00
//获取时间
2022-08-02 02:25:29 +00:00
let t = null;
2021-09-25 14:57:18 +00:00
t = setTimeout(time, 1000);
function time() {
clearTimeout(t);
dt = new Date();
let y = dt.getYear() + 1900;
let mm = dt.getMonth() + 1;
let d = dt.getDate();
let weekday = [
"星期日",
"星期一",
"星期二",
"星期三",
"星期四",
"星期五",
"星期六",
];
let day = dt.getDay();
let h = dt.getHours();
let m = dt.getMinutes();
let s = dt.getSeconds();
if (h < 10) {
h = "0" + h;
}
if (m < 10) {
m = "0" + m;
}
if (s < 10) {
s = "0" + s;
}
$("#time").html(
y +
"&nbsp;年&nbsp;" +
mm +
"&nbsp;月&nbsp;" +
d +
"&nbsp;日&nbsp;" +
"<span class='weekday'>" +
weekday[day] +
"</span><br>" +
"<span class='time-text'>" +
h +
":" +
m +
":" +
s +
"</span>"
);
t = setTimeout(time, 1000);
2021-09-25 14:57:18 +00:00
}
//链接提示文字
$("#social")
.mouseover(function () {
2021-10-03 09:03:31 +00:00
$("#social").css({
background: "rgb(0 0 0 / 25%)",
"border-radius": "6px",
"backdrop-filter": "blur(5px)",
2021-10-03 09:03:31 +00:00
});
$("#link-text").css({
display: "block",
2021-10-03 09:03:31 +00:00
});
})
.mouseout(function () {
2021-10-03 09:03:31 +00:00
$("#social").css({
background: "none",
"border-radius": "6px",
"backdrop-filter": "none",
2021-10-03 09:03:31 +00:00
});
$("#link-text").css({
display: "none",
2021-10-03 09:03:31 +00:00
});
});
2021-09-25 14:57:18 +00:00
$("#github")
.mouseover(function () {
2021-10-03 09:03:31 +00:00
$("#link-text").html("去 Github 看看");
})
.mouseout(function () {
2021-10-03 09:03:31 +00:00
$("#link-text").html("通过这里联系我");
});
$("#qq")
.mouseover(function () {
2021-10-03 09:03:31 +00:00
$("#link-text").html("有什么事吗");
})
.mouseout(function () {
2021-10-03 09:03:31 +00:00
$("#link-text").html("通过这里联系我");
});
$("#email")
.mouseover(function () {
2021-10-03 09:03:31 +00:00
$("#link-text").html("来封 Email");
})
.mouseout(function () {
2021-10-03 09:03:31 +00:00
$("#link-text").html("通过这里联系我");
});
$("#bilibili")
.mouseover(function () {
2022-07-27 02:53:34 +00:00
$("#link-text").html("来 B 站看看 ~");
})
.mouseout(function () {
2021-10-03 09:03:31 +00:00
$("#link-text").html("通过这里联系我");
});
$("#telegram")
.mouseover(function () {
2021-10-03 09:03:31 +00:00
$("#link-text").html("你懂的 ~");
})
.mouseout(function () {
2021-10-03 09:03:31 +00:00
$("#link-text").html("通过这里联系我");
});
2021-09-25 14:57:18 +00:00
2022-07-07 13:42:10 +00:00
//自动变灰
let myDate = new Date();
2022-08-02 02:25:29 +00:00
let mon = myDate.getMonth() + 1;
let date = myDate.getDate();
let days = ["4.4", "5.12", "7.7", "9.9", "9.18", "12.13"];
2022-08-02 02:25:29 +00:00
for (let day of days) {
let d = day.split(".");
if (mon == d[0] && date == d[1]) {
document.write(
"<style>html{-webkit-filter:grayscale(100%);-moz-filter:grayscale(100%);-ms-filter:grayscale(100%);-o-filter:grayscale(100%);filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);_filter:none}</style>"
);
$("#change").html("Silence&nbsp;in&nbsp;silence");
$("#change1").html("今天是中国国家纪念日,全站已切换为黑白模式");
window.addEventListener(
"load",
function () {
setTimeout(function () {
iziToast.show({
timeout: 14000,
icon: "fa-solid fa-clock",
message: "今天是中国国家纪念日",
});
}, 3800);
},
false
);
}
2022-07-07 13:42:10 +00:00
}
2021-10-03 09:03:31 +00:00
//更多页面切换
2022-08-02 02:25:29 +00:00
let shoemore = false;
$("#switchmore").on("click", function () {
shoemore = !shoemore;
if (shoemore && $(document).width() >= 990) {
$("#container").attr("class", "container mores");
$("#change").html("Oops&nbsp;!");
$("#change1").html("哎呀,这都被你发现了( 再点击一次可关闭 ");
} else {
$("#container").attr("class", "container");
$("#change").html("Hello&nbsp;World&nbsp;!");
$("#change1").html("一个建立于 21 世纪的小站,存活于互联网的边缘");
}
2021-10-03 09:03:31 +00:00
});
2021-09-25 14:57:18 +00:00
2021-10-03 09:03:31 +00:00
//更多页面关闭按钮
$("#close").on("click", function () {
$("#switchmore").click();
2021-10-03 09:03:31 +00:00
});
2022-02-03 08:05:44 +00:00
//移动端菜单栏切换
2022-08-02 02:25:29 +00:00
let switchmenu = false;
$("#switchmenu").on("click", function () {
switchmenu = !switchmenu;
if (switchmenu) {
$("#row").attr("class", "row menus");
$("#menu").html("<i class='fa-solid fa-xmark'></i>");
} else {
$("#row").attr("class", "row");
$("#menu").html("<i class='fa-solid fa-bars'></i>");
}
2021-10-03 09:03:31 +00:00
});
2021-09-25 14:57:18 +00:00
2021-09-27 13:07:24 +00:00
//更多弹窗页面
$("#openmore").on("click", function () {
$("#box").css("display", "block");
$("#row").css("display", "none");
$("#more").css("cssText", "display:none !important");
2021-10-03 09:03:31 +00:00
});
$("#closemore").on("click", function () {
$("#box").css("display", "none");
$("#row").css("display", "flex");
$("#more").css("display", "flex");
2021-10-03 09:03:31 +00:00
});
2021-09-27 13:07:24 +00:00
2021-09-25 14:57:18 +00:00
//监听网页宽度
window.addEventListener("load", function () {
window.addEventListener("resize", function () {
//关闭移动端样式
if (window.innerWidth >= 600) {
$("#row").attr("class", "row");
$("#menu").html("<i class='fa-solid fa-bars'></i>");
//移除移动端切换功能区
$("#rightone").attr("class", "row rightone");
}
if (window.innerWidth <= 990) {
//移动端隐藏更多页面
$("#container").attr("class", "container");
$("#change").html("Hello&nbsp;World&nbsp;!");
$("#change1").html("一个建立于 21 世纪的小站,存活于互联网的边缘");
//移动端隐藏弹窗页面
$("#box").css("display", "none");
$("#row").css("display", "flex");
$("#more").css("display", "flex");
}
});
});
2022-01-20 12:50:55 +00:00
2021-09-28 12:56:14 +00:00
//移动端切换功能区
2022-08-02 02:25:29 +00:00
let changemore = false;
$("#changemore").on("click", function () {
changemore = !changemore;
if (changemore) {
$("#rightone").attr("class", "row menus mobile");
} else {
$("#rightone").attr("class", "row menus");
}
2021-10-03 09:03:31 +00:00
});
2021-09-28 12:56:14 +00:00
2021-09-26 13:30:38 +00:00
//更多页面显示关闭按钮
$("#more").hover(
function () {
$("#close").css("display", "block");
},
function () {
$("#close").css("display", "none");
}
);
2021-09-27 13:07:24 +00:00
//屏蔽右键
2021-09-28 12:56:14 +00:00
document.oncontextmenu = function () {
iziToast.show({
timeout: 2000,
icon: "fa-solid fa-circle-exclamation",
message: "为了浏览体验,本站禁用右键",
});
return false;
};
2021-12-13 06:43:50 +00:00
//控制台输出
2022-08-04 02:41:47 +00:00
//console.clear();
2022-08-02 02:25:29 +00:00
let styleTitle1 = `
font-size: 20px;
font-weight: 600;
color: rgb(244,167,89);
`;
2022-08-02 02:25:29 +00:00
let styleTitle2 = `
font-size:12px;
color: rgb(244,167,89);
`;
2022-08-02 02:25:29 +00:00
let styleContent = `
color: rgb(30,152,255);
`;
let title1 = "無名の主页";
2022-08-02 02:25:29 +00:00
let title2 = `
_____ __ __ _______ ____ __
|_ _| \\/ |/ ____\\ \\ / /\\ \\ / /
| | | \\ / | (___ \\ \\_/ / \\ \\_/ /
| | | |\\/| |\\___ \\ \\ / \\ /
_| |_| | | |____) | | | | |
|_____|_| |_|_____/ |_| |_|
`;
2022-08-02 02:25:29 +00:00
let content = `
2022-07-27 02:53:34 +00:00
3.4
更新日期2022-07-24
2022-01-29 05:09:21 +00:00
主页: https://www.imsyy.top
Github: https://github.com/imsyy/home
`;
console.log(
`%c${title1} %c${title2}
%c${content}`,
styleTitle1,
styleTitle2,
styleContent
);