🎨 Awescnb, awesome cnblog.javascript
可能許多初來乍到的新手會被博客園經典的風格勸退,或者您是一個老園友,須要爲您的博客定製一些功能(例如宣傳公衆號,文章目錄、或者插入幾個捐助二維碼等等)而不想浪費太多時間。我製做這個小項目的目的是園友可以輕易地構建一個博客園皮膚或完善您的博客頁面功能。它能夠用來作如下三件事:css
今天週末錄製了一個簡單視頻教程,雖然我在搭建的文檔裏有寫,但願它能幫您更容易上手。視頻從博客皮膚的安裝、切換、從零開始製做三個方面簡單展開。html
您多是非 web 前端從業者,視頻中用到的命令您可能會有疑惑,只須要下載 node並安裝到您的電腦就擁有了一個叫作 npm 的東西(node 包管理器),而視頻中使用的 npm xx
命令正是來源於此。前端
{ // 基本配置 theme: { name: 'reacg', color: '#FFB3CC', title: '', contentSize: 'mid', headerBackground: '', avatar: 'https://pic.cnblogs.com/face/sample_face.gif', favicon: '', }, // 代碼高亮 highLight: { type: 'atomOneDark', inDarkMode: 'atomOneDark', }, // 代碼行號 lineNumbers: { enable: true, }, // github圖標 github: { enable: true, color: '#ffb3cc', url: 'https://github.com/guangzan/awescnb', }, // 碼雲圖標 gitee: { enable: true, color: '#C71D23', url: 'https://gitee.com/guangzan/awescnb', }, // 圖片燈箱 imagebox: { enable: true, }, // 文章目錄 catalog: { enable: true, position: 'left', }, // 返回頂部按鈕 back2top: { enable: true, type: 'complex', }, // 右下角按鈕列表 tools: { enable: true, initialOpen: true, draggable: false, }, // live2d模型 live2d: { enable: true, page: 'all', agent: 'pc', model: 'haru-01', width: 150, height: 200, position: 'left', gap: 'default', }, // 點擊特效 click: { enable: true, auto: false, colors: ['#FF1461', '#18FF92', '#5A87FF', '#FBF38C'], size: 30, maxCount: 15, }, // 評論輸入框表情 emoji: { enable: true, showRecents: true, recentsCount: 20, showPreview: true, showSearch: true, }, // 暗色模式 darkMode: { enable: true, autoDark: false, autoLight: false, }, // 音樂播放器 musicPlayer: { enable: true, page: 'all', agent: 'pc', autoplay: false, volume: 0.4, lrc: { enable: false, // 啓用歌詞 type: 1, // 1 -> 字符串歌詞 3 -> url 歌詞 color: '', // 顏色 }, audio: [ { name: '404 not found', artist: 'REOL', url: 'http://music.163.com/song/media/outer/url?id=436016480.mp3', cover: 'http://p2.music.126.net/cu1sEIDxXOJm5huZ3Wjs0Q==/18833534672880379.jpg?param=300x300', lrc: ``, }, ], }, // 隨筆頭圖 postTopimage: { enable: true, // position: 'top', // position api 已經廢棄,使用 postbottomimage 代替 fixed: false, imgs: [], }, // 隨筆尾圖 postBottomimage: { enable: false, img: '', height: '', }, // 打賞 donation: { enable: false, qrcodes: [], }, // 個性簽名 signature: { enable: false, contents: [], }, // 二維碼 qrcode: { enable: false, img: '', desc: '', }, // 彈出公告 notice: { enable: false, text: [], }, // 首頁列表圖 indexListImg: { enable: false, imgs: [], }, // 頂部加載進度條 topProgress: { enable: false, page: 'all', agent: 'pc', background: '#FFB3CC', height: '5px', }, indexTimeline: { enable: false, }, // 隨筆頁尾部簽名 postSignature: { enable: false, content: [], licenseLink: '', }, // 背景圖片或顏色 bodyBackground: { enable: false, type: 'color', value: '', opacity: 1, repeat: false, }, // 彈幕 barrage: { enable: false, opacity: 0.6, colors: [ '#FE0302', '#FF7204', '#FFAA02', '#FFD302', '#FFFF00', '#A0EE00', '#00CD00', '#019899', '#4266BE', '#89D5FF', '#CC0273', '#CC0273', ], barrages: [], indexBarrages: [], postPageBarrages: [], }, // 圖表 charts: { enable: false, pie: { title: 'My skills', data: { labels: ['JavaScript', 'css', 'Vue', 'React', 'wechat'], values: [40, 30, 20, 10, 20], }, }, }, // 鎖屏 lock: { enable: true, background: '', strings: [ '<i>Powered by</i> webpack.', '& Theme in awescnb', '快去自定義你的個性簽名吧~', ], }, // footer連接 links: [ { name: 'awescnb', link: 'https://gitee.com/guangzan/awescnb', }, ], }
起初我只是用 gulp(前端構建工具) 簡單製做了一個博客園皮膚供本身使用,後來愈來愈多的園友使用,我索性用 webpack 將它重構並和交流羣裏的小夥伴一塊兒完善。如今它已經可以徹底勝任當前的工做了,enjoy!從此我也再也不發佈關於它的介紹隨筆,會花費精力寫其餘前端相關內容。java
有但願捐助的小夥伴不要再問我了,這個小項目非我一人所爲,它不接受任何捐助。有任何建議或者問題均可以到交流羣(541802647)裏交流或者在項目倉庫提個 issue。再次感謝全部提供建議的小夥伴。💗node