5

JSFiddleにコア要素ペーパー要素をインポートするにはどうすればよいですか。

これらのステートメントを通じてポリマーをインポートしています:

<script src="//cdnjs.cloudflare.com/ajax/libs/polymer/0.4.2/platform.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/polymer/0.4.2/polymer.js"></script>

たとえば、どのようにインポートできますcore-inputpaper-input?

4

3 に答える 3

8

はい、ポリマープロジェクトサイトから、または場所がわかっている場合は、cloudflare cdn を推測します

<script src="http://www.polymer-project.org/platform.js"></script>
<link rel="import" href="http://www.polymer-project.org/components/polymer/polymer.html">
<link rel="import" href="http://www.polymer-project.org/components/paper-button/paper-button.html">
<link rel="import" href="http://www.polymer-project.org/components/core-header-panel/core-header-panel.html">

これは開発用であり、本番用ではありません。

ポリマー要素に移動して要素を選択し、Get Element というボタンをクリックすると、インポート リンクがポップアップ表示されます。

また、ここからすべてのコアまたは紙の要素へのリンクを取得できます

于 2014-10-30T14:19:40.383 に答える
0

Polymer 1.0 で記述された単純なコンポーネントをテストするには、次のスニペットを使用します。

<link rel="import" href="https://raw.githubusercontent.com/Polymer/polymer/master/polymer.html">

<dom-module id="proto-element">
    <template>
        <span>I'm <b>proto-element</b>. Check out my prototype.</span>
    </template>
</dom-module>

<script>
    Polymer({
        is: "proto-element",
        ready: function() {
            //...
        }
    });
</script>

<proto-element></proto-element>

http://jsfiddle.net/MartyIX/84b5sabw/

于 2015-06-20T13:20:13.467 に答える