Skip to content

Instantly share code, notes, and snippets.

@isaumya
Created December 11, 2016 11:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isaumya/836698647e082dde9b19aa72081b57f0 to your computer and use it in GitHub Desktop.
Save isaumya/836698647e082dde9b19aa72081b57f0 to your computer and use it in GitHub Desktop.
Showing special message in the console.log
/* This script will show a special designed message in the console.log section of your website
* for those who looks for something extra in your website.
* Fiddle Link: https://jsfiddle.net/isaumya/vtjswjuL/
**/
jQuery(function ($) {
try{
console.log("%c < ISAUMYA /> ","background: linear-gradient(to right, rgba(231,76,60,1) 0%,rgba(155,89,182,1) 100%););font-size:3em;border-radius:1em;color:#ffffff;font-weight:bold;font-style: italic;");
console.log('%c made with ♥ by Saumya Majumder © 2016', 'color: #e74c3c;font-size:1.1em;');
}
catch(e){}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment