Skip to content

Instantly share code, notes, and snippets.

View 5alidshammout's full-sized avatar

5alidshammout 5alidshammout

View GitHub Profile
console.delayLog = function(time, message) {
var style =
"color: rgb(249, 162, 34);" +
"font-size: 60px;" +
"font-weight: bold;" +
"text-shadow: 1px 1px 5px rgb(249, 162, 34);" +
"filter: dropshadow(color=rgb(249, 162, 34), offx=1, offy=1);";
setTimeout(function() {
console.log(message, style);
}, time);