Polymerjs paper-progress元素

在Polymer.js中, paper-progress条用于确定已完成任务的百分比。它指定用户必须花费多少时间才能完成任务。次要进度也可用于显示中间进度。
在命令提示符下使用以下命令可以使目录在工作状态下前进。

bower install --save PolymerElements/paper-progress

Polymerjs paper-progress元素

文章图片
例:
创建一个index.html文件, 并在其中添加以下代码, 以查看Polymer.js中paper-progress元素的使用。
< !doctype html> < html> < head> < link rel = 'import' href = 'http://www.srcmini.com/my-app.html'> < /head> < body> < my-app> < /my-app> < /body> < /html>

现在, 打开my-app.html文件, 并在其中包含以下代码。
< link rel = 'import' href = 'http://www.srcmini.com/bower_components/polymer/polymer.html'> < link rel = "import" href = "http://www.srcmini.com/bower_components/paper-progress/paper-progress.html"> < dom-module id = 'my-app'> < template> < style> paper-progress { display: block; width: 30%; margin: 20px 0; } < /style> < h3> Paper-Progress Example< /h3> < p> 70% completed< /p> < paper-progress value = "http://www.srcmini.com/70"> < /paper-progress> < p> 45% completed< /p> < paper-progress value = "http://www.srcmini.com/45"> < /paper-progress> < p> 20% completed< /p> < paper-progress value = "http://www.srcmini.com/20"> < /paper-progress> < /template> < script> Polymer ({ is: 'my-app', ready: function() { this.async(function() { }); } }); < /script> < /dom-module>

【Polymerjs paper-progress元素】输出
Polymerjs paper-progress元素

文章图片

    推荐阅读