代码拉取完成,页面将自动刷新
同步操作将从 JackWhh/flow-cat-public 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
const Flower = require('./Flower')
const {getDirFileNum} = require("./util");
let openSrc = 'img/张嘴1.png'
let closeSrc = 'img/闭嘴1.png'
const imgElement = document.getElementById('imgAvatar');
imgElement.addEventListener("mousedown", ev => {
if (ev.button === 2) {
const string = imgElement.src.substring(imgElement.src.length - 5, imgElement.src.length).split('.')[0];
let index = parseInt(string);
if (index) {
getDirFileNum(`${__dirname}/img`).then(res=>{
console.log(res)
if (index < (res/2)) {
index++
openSrc = `img/张嘴${index}.png`
closeSrc = `img/闭嘴${index}.png`
} else {
openSrc = 'img/张嘴1.png'
closeSrc = 'img/闭嘴1.png'
}
imgElement.src = closeSrc
})
}
}
})
window.onGlobalKeyBoard = (type, value) => {
if (1 === type) {
const imgElement = document.getElementById('imgAvatar');
if (imgElement.src.concat('闭嘴')) {
imgElement.src = openSrc
imgElement.offsetTop
imgElement.offsetLeft
}
for (let i = 0; i < 6; i++) {
const number = parseInt((Math.random() * 21) + '')
document.body.appendChild(new Flower(`flower_${number + 1}.png`).img)
}
}
if (2 === type) {
const imgElement = document.getElementById('imgAvatar');
if (imgElement.src.concat('张嘴')) {
imgElement.src = closeSrc
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。