我開始玩聚合物和我建立這個結構的元素:聚合物 - 聚合物元素內顯示元素
<link rel="import" href="../bower_components/polymer/polymer.html">
<polymer-element name="e-card" attributes="background" contructor="eCard" noscript>
<template>
<style>
h1
{
color: #123;
font-size: 3em;
text-align: center;
}
p
{
color: #333;
}
</style>
</template>
</polymer-element>
在我index.html
文件我所說的元素是這樣的:
...
<head>
<script src="bower_components/webcomponentsjs/webcomponents.min.js"></script>
<link rel="import" href="elements/e-card.html">
</head>
<body>
<e-card>
<h1>This is my card</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
</e-card>
</body>
...
但是,當我在瀏覽器中打開文件什麼都不顯示。我做錯了什麼?
看起來你沒有在你的'電子卡'中定義的HTML元素? –