-1

sencha 2.0 に独自の picto を含める方法を教えてください。これは私の.scssファイルです。

$base_color:#FF83D6;

@import 'sencha-touch/default/all';

@include sencha-toolbar-ui('india', #66FF66, 'matte');
@include sencha-button-ui('india', #66ff66, 'matte');
@include sencha-button-ui('india', #66ff66, 'matte');

@include pictos-iconmask(PICTOS_NAME);

PICTOS_NAME使用できるようにするには、何に置き換える必要がありますか?

4

1 に答える 1

0

http://docs.sencha.com/touch/2.0.2/#!/api/Global_CSS-css_mixin-pictos-iconmask

pictos-iconmask( $name )

タブバーとボタン内で使用する base64 でエンコードされたアイコンを含めます (コンポーネント パラメーター iconMask: true を使用)。

@include pictos-iconmask('attachment');

$name : 文字列

含めるアイコンの名前。resources/themes/images/default/pictosこれは、拡張子(.png) を除いたアイコン ファイル ( にあります) の名前と一致します。

于 2013-05-14T12:22:02.213 に答える