1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| console.log('this is a log');
var template = '%cHello World!', style = 'font-size: 30px; color: blue;'; console.log(template, style);
var template = '%cHello World!', style = ''; style += 'background-image: -webkit-gradient(linear, left top, right top,'; style += 'color-stop(0, #f22), color-stop(0.15, #f2f), color-stop(0.3, #22f),'; style += 'color-stop(0.45, #2ff), color-stop(0.6, #2f2),color-stop(0.75, #2f2),'; style += 'color-stop(0.9, #ff2), color-stop(1, #f22));'; style += 'color: transparent; -webkit-background-clip: text; font-size: 6em;)'; console.log(template, style);
var style = 'padding: 150px 200px; line-height: 300px; background: url(http://www.wyzu.cn/data/uploadfile/200803/2008032812262650.gif) no-repeat;'; console.log('%c', style);
console.log('%cHello World!', 'color: red;', 'JavaScript', 'Web Developer');
|