4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

docomo絵文字をスマホサイトで表示する②

Posted at

前回の投稿に引きつづいて、スマホサイトでdocomo絵文字(ていうか今回はガラケー絵文字)の装飾を試してみたメモです。

スクリーンショット 2014-03-28 19.34.20.png

こんな感じ <span class="emoji sun"></span> の記述でガラケー絵文字をスマホサイト(for iOS/Android)へ表示します。

  • HTMLファイルは UTF-8 形式を想定しています。
  • 最終的には今回も画像(CSSスプライト)で表示でします。

デモ

こちらをご覧ください。

利用するライブラリ

この「emoji-splite」というJavaScriptライブラリを使います。

導入手順メモ

手順

$ git clone git://github.com/matsubo/emoji-sprite.git
  • index.html で CSSファイル をインクルード
index.html
<link rel="stylesheet" href="emoji-sprite/lib/emoji-sprite/emoji.css">
  • HTMLへの記載
index.html
これは<span class="emoji sun"></span>晴れマークです。<br>
これは<span class="emoji cloud"></span>曇りマークです。

結果

ブラウザで表示するとこんな感じ。

スクリーンショット 2014-03-28 18.24.58.png

デモのソースはこちらに置いておきます。

ほか

4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?