0

fonts.com webfont ローダーを使用しようとしています。しかし、私が取り組んでいるページは、haml で作成されました。私はhamlに比較的慣れていないので、このスクリプトタグをローダーで新しい構文に変換する方法に問題があります。

<script type="text/javascript">

    WebFont.load({

        monotype: {

            projectId: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'///this is your Fonts.com Web Fonts projectId



        }

    });

</script>
4

1 に答える 1

0

:javascriptフィルターを使用できます

:javascript
  WebFont.load({
      monotype: {
            projectId: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
        }
  });
于 2013-03-21T14:20:53.633 に答える