e619a3b0
Luigi Serra
Controllet cross ...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<!--
@license
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<!doctype html>
<html>
<head>
<title>iron-list, paper-scroll-header-panel, filltext.com demo</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<script src="../../webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="../../polymer/polymer.html">
<link rel="import" href="../../iron-flex-layout/iron-flex-layout.html">
<link rel="import" href="../../paper-toolbar/paper-toolbar.html">
<link rel="import" href="../../paper-scroll-header-panel/paper-scroll-header-panel.html">
<link rel="import" href="../../paper-spinner/paper-spinner.html">
<link rel="import" href="../../paper-icon-button/paper-icon-button.html">
<link rel="import" href="../../iron-ajax/iron-ajax.html">
<link rel="import" href="../../iron-icons/iron-icons.html">
<link rel="import" href="../iron-list.html">
<style is="custom-style">
:root {
|
c5169e0e
Renato De Donato
a new hope
|
39
|
--dark-primary-color: #F57C00;
|
e619a3b0
Luigi Serra
Controllet cross ...
|
40
41
42
43
44
45
46
47
48
49
|
}
paper-scroll-header-panel {
@apply(--layout-fit);
@apply(--layout-vertical);
@apply(--paper-font-common-base);
}
paper-toolbar {
background-color: var(--dark-primary-color);
|
c5169e0e
Renato De Donato
a new hope
|
50
51
52
53
54
55
56
57
58
|
}
paper-toolbar.tall .title {
font-size: 40px;
margin-left: 60px;
-webkit-transform-origin: left center;
transform-origin: left center;
overflow: visible;
|
e619a3b0
Luigi Serra
Controllet cross ...
|
59
60
61
62
|
}
.middle-container {
height: 100%;
|
e619a3b0
Luigi Serra
Controllet cross ...
|
63
64
65
|
/*margin-left: 60px;*/
}
|
e619a3b0
Luigi Serra
Controllet cross ...
|
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
.bottom {
padding-left: 62px;
}
iron-list {
background-color: var(--paper-grey-200, #eee);
padding-bottom: 16px;
}
.item {
@apply(--layout-horizontal);
margin: 16px 16px 0 16px;
padding: 20px;
border-radius: 8px;
background-color: white;
border: 1px solid #ddd;
}
.pad {
padding: 0 16px;
@apply(--layout-flex);
@apply(--layout-vertical);
}
.primary {
font-size: 16px;
font-weight: bold;
}
.secondary {
font-size: 14px;
}
.dim {
color: gray;
}
|
e619a3b0
Luigi Serra
Controllet cross ...
|
105
106
107
108
109
110
|
/* Small */
@media (max-width: 600px) {
paper-toolbar.tall .title {
font-size: 20px;
}
}
|
c5169e0e
Renato De Donato
a new hope
|
111
|
|
e619a3b0
Luigi Serra
Controllet cross ...
|
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
.index {
width: 30px;
}
</style>
</head>
<body unresolved>
<template is="dom-bind" id="app">
<iron-ajax id="get_filltext_ajax" auto
url="//www.filltext.com/"
params='{"rows": "1000", "fname":"{firstName}", "lname": "{lastName}", "address": "{streetAddress}",
"city": "{city}", "state": "{usState|abb}", "zip": "{zip}", "integer": "{number|100}",
"business": "{business}", "index": "{index}"}'
handle-as="json"
loading="{{loading}}"
last-response="{{people}}">
</iron-ajax>
|
c5169e0e
Renato De Donato
a new hope
|
131
|
<paper-scroll-header-panel class="fit" condenses keep-condensed-header>
|
e619a3b0
Luigi Serra
Controllet cross ...
|
132
133
|
<paper-toolbar class="tall">
<paper-icon-button icon="arrow-back"></paper-icon-button>
|
c5169e0e
Renato De Donato
a new hope
|
134
|
<div class="flex"></div>
|
e619a3b0
Luigi Serra
Controllet cross ...
|
135
136
137
138
|
<paper-icon-button icon="search"></paper-icon-button>
<paper-icon-button icon="refresh" on-tap="refreshData"></paper-icon-button>
<paper-icon-button icon="more-vert"></paper-icon-button>
|
c5169e0e
Renato De Donato
a new hope
|
139
|
<div class="middle middle-container center horizontal layout">
|
eb240478
Luigi Serra
public room cards...
|
140
|
<div class="title">iron-list & filltext.com</div>
|
e619a3b0
Luigi Serra
Controllet cross ...
|
141
|
</div>
|
c5169e0e
Renato De Donato
a new hope
|
142
|
<div class="bottom bottom-container center horizontal layout">
|
e619a3b0
Luigi Serra
Controllet cross ...
|
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
|
<div class="bottom-title">
<span class="length">Rows: <span>{{people.length}}</span></span>
<paper-spinner active="{{loading}}"></paper-spinner>
</div>
</div>
</paper-toolbar>
<iron-list items="[[people]]" as="item">
<template>
<div>
<div class="item">
<div class="primary dim">[[item.index]]</div>
<div class="pad">
<div class="primary"><span>[[item.fname]]</span> <span>[[item.lname]]</span></div>
<div class="secondary"><span>[[item.address]]</span> <span>[[item.city]]</span></div>
<div class="secondary"><span>[[item.city]]</span>, <span>[[item.state]]</span> <span>[[item.zip]]</span></div>
<div class="secondary dim">[[item.business]]</div>
</div>
<iron-icon icon$="[[iconForItem(item)]]"></iron-icon>
</div>
</div>
</template>
</iron-list>
</paper-scroll-header-panel>
</template>
<script>
var app = document.querySelector('#app');
document.querySelector('template[is=dom-bind]').iconForItem = function(item) {
return item ? (item.integer < 50 ? 'star-border' : 'star') : '';
};
// Custom transformation: scale header's title
addEventListener('paper-header-transform', function(e) {
var title = document.querySelector('.title');
var middleContainer = document.querySelector('.middle-container');
var bottomContainer = document.querySelector('.bottom-container');
var detail = e.detail;
var heightDiff = detail.height - detail.condensedHeight;
var yRatio = Math.min(1, detail.y / heightDiff);
var maxMiddleScale = 0.50; // title max size when condensed. The smaller the number the smaller the condensed size.
var scaleMiddle = Math.max(maxMiddleScale, (heightDiff - detail.y) / (heightDiff / (1-maxMiddleScale)) + maxMiddleScale);
var scaleBottom = 1 - yRatio;
// Move/translate middleContainer
Polymer.Base.transform('translate3d(0,' + yRatio * 100 + '%,0)', middleContainer);
// Scale bottomContainer and bottom title to 0 and back
Polymer.Base.transform('scale(' + scaleBottom + ') translateZ(0)', bottomContainer);
// Scale middle Title
Polymer.Base.transform('scale(' + scaleMiddle + ') translateZ(0)', title);
});
// Refresh Data
app.refreshData = function() {
this.$.get_filltext_ajax.generateRequest();
};
</script>
</body>
</html>
|