在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):PolymerElements/paper-swatch-picker开源软件地址(OpenSource Url):https://github.com/PolymerElements/paper-swatch-picker开源编程语言(OpenSource Language):JavaScript 55.7%开源软件介绍(OpenSource Introduction):<paper-swatch-picker>
See: Documentation, Demo. UsageInstallation
In an html file<html>
<head>
<script type="module">
import '@polymer/paper-swatch-picker/paper-swatch-picker.js';
</script>
</head>
<body>
<paper-swatch-picker></paper-swatch-picker>
<paper-swatch-picker column-count=5 color-list='["#65a5f2", "#83be54", "#f0d551", "#e5943c", "#a96ddb"]'></paper-swatch-picker>
</body>
</html> In a Polymer 3 elementimport {PolymerElement, html} from '@polymer/polymer';
import '@polymer/paper-swatch-picker/paper-swatch-picker.js';
class SampleElement extends PolymerElement {
static get template() {
return html`
<paper-swatch-picker></paper-swatch-picker>
<paper-swatch-picker color="{{selectedColor}}"></paper-swatch-picker>
<paper-swatch-picker column-count=5 color-list='["#65a5f2", "#83be54", "#f0d551", "#e5943c", "#a96ddb"]'></paper-swatch-picker>
`;
}
}
customElements.define('sample-element', SampleElement); ContributingIf you want to send a PR to this element, here are the instructions for running the tests and demo locally: Installationgit clone https://github.com/PolymerElements/paper-swatch-picker
cd paper-swatch-picker
npm install
npm install -g polymer-cli Running the demo locallypolymer serve --npm
open http://127.0.0.1:<port>/demo/ Running the testspolymer test --npm <paper-swatch-picker>
See: Documentation, Demo. UsageInstallation
In an html file<html>
<head>
<script type="module">
import '@polymer/paper-swatch-picker/paper-swatch-picker.js';
</script>
</head>
<body>
<paper-swatch-picker always-float-label label="Floating label"></paper-swatch-picker>
</body>
</html> In a Polymer 3 elementimport {PolymerElement, html} from '@polymer/polymer';
import '@polymer/paper-swatch-picker/paper-swatch-picker.js';
class SampleElement extends PolymerElement {
static get template() {
return html`
<paper-swatch-picker always-float-label label="Floating label"></paper-swatch-picker>
`;
}
}
customElements.define('sample-element', SampleElement); ContributingIf you want to send a PR to this element, here are the instructions for running the tests and demo locally: Installationgit clone https://github.com/PolymerElements/paper-swatch-picker
cd paper-swatch-picker
npm install
npm install -g polymer-cli Running the demo locallypolymer serve --npm
open http://127.0.0.1:<port>/demo/ Running the testspolymer test --npm |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论