JavaScript 的 Emoji 转换库 js-emoji
- 授权协议: 未知
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/iamcal/js-emoji
软件介绍
js-emoji 可以让你在浏览器上显示 Emoji 表情,使用方法:
<link href="emoji.css" rel="stylesheet" type="text/css" />
<script src="emoji.js" type="text/javascript"></script>
<script type="text/javascript">
// replaces \u{1F604} with platform appropriate content
var output1 = emoji.replace_unified(input);
// replaces 😄 with platform appropriate content
var output2 = emoji.replace_colons(input);
// force text output mode
emoji.text_mode = true;
// show the short-name as a `title` attribute for css/img emoji
emoji.include_title = true;
// change the path to your emoji images (requires trailing slash)
// you can grab the images from here:
// https://github.com/github/gemoji/tree/master/images/emoji/unicode
emoji.img_path = "http://my-cdn.com/images/emoji/";
// find out the auto-detected mode
alert(emoji.replace_mode);
</script>
疯狂Java讲义
李刚 / 电子工业出版社 / 2014-7-1 / 109.00元
《疯狂Java讲义(第3版)(含CD光盘1张)》是《疯狂Java讲义》的第3版,第3版保持了前两版系统、全面、讲解浅显、细致的特性,全面新增介绍了Java 8的新特性,《疯狂Java讲义(第3版)(含CD光盘1张)》大部分示例程序都采用Lambda表达式、流式API进行了改写,因此务必使用Java 8的JDK来编译、运行。 《疯狂Java讲义(第3版)(含CD光盘1张)》深入介绍了Java编......一起来看看 《疯狂Java讲义》 这本书的介绍吧!
