まえがき
コ○ナのせいで外出できず、暇だったので作りました。
味気ないconsole.logに飽きたら使ってみてください。
使用例
ソースコード
index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<script src="console.js"></script>
<script>
console.cog("hoge");
console.dog("hoge");
console.fog("hoge");
console.hog("hoge");
console.jog("hoge");
</script>
</body>
</html>
結果
スクリプト(コピペ用)
console.js
/***
* Params are
* s(speaker), w(word), l(length)
*/
console.xog = function(s, w, l) {
console.log(`
/ ̄${` ̄`.repeat(l)} ̄
${s} < ${w}
\\_${`_`.repeat(l)}_
`);
}
console.cog = function(oil, l=oil.length/2) {
console.xog("⚙", oil, l);
};
console.dog = function(bark, l=bark.length/2) {
console.xog("🐶", bark, l);
};
console.fog = function(moisture, l=moisture.length/2) {
console.xog("🌫", moisture, l);
};
console.hog = function(grunt, l=grunt.length/2) {
console.xog("🐷", grunt, l);
};
console.jog = function(wind, l=wind.length) {
console.log(`🏃🏽${`💨`.repeat(l)}`);
};