var text = `
███████╗ ██████╗██████╗ ███████╗
██╔════╝██╔════╝██╔══██╗██╔════╝
█████╗ ██║ ██████╔╝█████╗
██╔══╝ ██║ ██╔══██╗██╔══╝
███████╗╚██████╗██║ ██║██║
╚══════╝ ╚═════╝╚═╝ ╚═╝╚═╝
`
console.log(text)
/* 样式代码 */
var styleTitle1 = `
font-size: 20px;
font-weight: 600;
color: rgb(244,167,89);
`
var styleTitle2 = `
font-style: oblique;
font-size:14px;
color: rgb(244,167,89);
font-weight: 400;
`
var styleContent = `
color: rgb(30,152,255);
`
/* 内容代码 */
var title1 = '㉿ {ai} '
var title2 = 'AI运用到企业自动化'
// => 读取配置型(在配置文件里配置这些会变动的网址)
var offiUrl = 'https://appai.fly.io/kk/index.html'
var slogan = 'An inspiration from apple'
var content = `
版 本 号:1.1.0 【AnInspire版本:2.71】
编译日期:2024-2-26 19:39:39
版权声明:
1. {ai}版权完全属于 "安逸呀哈".
2. {ai}中remote.js程序包,任何个人和机构在遵守下列条件的前提下授权永久使用:
1)不进行任何形式的破解和裁剪,程序包完整引用
2)保留此版权信息在控制台输出
我们保留对此版权信息的最终解释权.
🏠官网: ${offiUrl}
🏎: ${slogan}
`
console.log(`%c${title1} %c${title2}
%c${content}`, styleTitle1, styleTitle2, styleContent)
console.log('%cAninspire.com', 'color: #43bb88;font-size: 24px;font-weight: bold;text-decoration: underline;');
console.log("%c ", "padding:112px 150px;background:url('https://app.sourcesquarechina.online/kk/assets/img/testimonials/testimonials-3.jpg') no-repeat;");
//https://lunicode.com/flip
console.log('https://lunicode.com/flip ==> 翻转字符串')
console.log('https://www.lddgo.net/string/text-to-ascii-art ===> 文字到ascii')
console.log('%d', 123);
console.log('%i', 123.3);
console.log('%o', document.body);
console.log('%O', new Date());
$(document).click(function(e) {
const eid = $(e.target).attr('id')
const eName = $(e.target).attr('name')
if (eid != null || eName != null) {
var outStr = eid == null ? `{"element":"${eName}","txt":"${eName} - test"},` : `{"element":"${eid}","txt":"${eid} - test"},`
console.log(outStr)
}
})