Created
December 11, 2016 11:01
-
-
Save isaumya/836698647e082dde9b19aa72081b57f0 to your computer and use it in GitHub Desktop.
Showing special message in the console.log
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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