Zhy's Blog~

View My GitHub Profile

Archive
Categories
About

在静态博客中添加Emoji表情组

  随着站点一点点地搭建起来,博主所期望的站点功能也是越来越完善。如今网络语言中各路表情被广泛使用,能达到“一图胜千言”的效果。博文中虽然不要求那么丰富的表情元素,但基础的小表情组应当是必需的,比如,Emoji表情组—— :joy: 。

style.css中追加:
	.emoji {
	width: 1.5em;
	height: 1.5em;
	display: inline-block;
	margin-bottom: -0.25em;
	}
html中前添加:
    < script src="../javascripts/emojify.min.js">
    < script src="../javascripts/emojify.run.js">
**ps注意粘贴时去点script前的空格。
其中emojify.run.js是自己创建的js文件,代码为:
emojify.setConfig({
	emojify_tag_type : 'section',           // Only run emojify.js on this element
	only_crawl_id    : null,            // Use to restrict where emojify.js applies
	img_dir          : '../pics/emojis',  // Directory for emoji images
	ignored_tags     : {                // Ignore the following tags
		'SCRIPT'  : 1,
		'TEXTAREA': 1,
		'A'       : 1,
		'PRE'     : 1,
		'CODE'    : 1
	}
});
emojify.run();
按自己情况修改上述代码中的emojify_tag_type和img_dir。
如果不想另外创建js文件,也可以直接在html中对应位置放上上述代码。

  

© 个人原创,未经允许,不得转载!

Copyright © 2015-2016 zhyack. All Rights Reserved.

如对文章有任何疑问,请移步问题聚集区一览~