73bcce88
luigser
COMPONENTS
|
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
<!doctype html>
<!--
@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
-->
<html lang="en">
<head>
<title>paper-tooltip demo</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<script src="../../webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="../../paper-styles/demo-pages.html">
<link rel="import" href="../../paper-styles/color.html">
<link rel="import" href="../../paper-icon-button/paper-icon-button.html">
<link rel="import" href="../../iron-icons/iron-icons.html">
<link rel="import" href="../paper-tooltip.html">
<link rel="import" href="test-button.html">
<style is="custom-style">
.horizontal-section {
min-width: 120px;
}
.with-tooltip {
display: inline-block;
margin-bottom: 30px;
overflow: hidden;
}
.avatar {
display: block;
width: 40px;
height: 40px;
border-radius: 50%;
overflow: hidden;
background: #ccc;
margin: 0 auto 20px auto;
cursor: pointer;
}
.blue {
background-color: var(--paper-light-blue-300);
}
.red {
background-color: var(--paper-red-300);
}
.orange {
background-color: var(--paper-amber-300);
}
.green {
background-color: var(--paper-green-300);
}
paper-tooltip.custom img {
width: 40px;
padding-right: 10px;
padding-bottom: 10px;
float: left;
}
.custom {
--paper-tooltip-background: black;
--paper-tooltip-text-color: var(--paper-pink-100);
width: 160px;
}
</style>
</head>
<body unresolved>
<div class="horizontal-section-container">
<div>
<h4>Anchored to native elements</h4>
<div class="horizontal-section">
<div class="with-tooltip" tabindex="0">
<input type="checkbox">Oxygen
<paper-tooltip>Atomic number: 8</paper-tooltip>
</div>
<br>
<div class="with-tooltip" tabindex="0">
<input type="checkbox">Carbon
<paper-tooltip>Atomic number: 6</paper-tooltip>
</div>
<br>
<div class="with-tooltip" tabindex="0">
<input type="checkbox">Hydrogen
<paper-tooltip>Atomic number: 1</paper-tooltip>
</div>
<br>
<div class="with-tooltip" tabindex="0">
<input type="checkbox">Nitrogen
<paper-tooltip>Atomic number: 7</paper-tooltip>
</div>
<br>
<div class="with-tooltip" tabindex="0">
<input type="checkbox">Calcium
<paper-tooltip>Atomic number: 20</paper-tooltip>
</div>
</div>
</div>
<div>
<h4>Anchored to custom elements</h4>
<div class="horizontal-section">
<test-button></test-button>
<paper-icon-button id="heart" icon="favorite" alt="heart"></paper-icon-button>
<paper-icon-button id="back" icon="arrow-back" alt="go back"></paper-icon-button>
<paper-icon-button id="fwd" icon="arrow-forward" alt="go forward"></paper-icon-button>
<!-- paper-icon-buttons have an inherent padding that will push the tooltip down. offset undoes it -->
<paper-tooltip for="heart" offset="0"><3 <3 <3 </paper-tooltip>
<paper-tooltip for="back" offset="0">halp I am trapped in a tooltip</paper-tooltip>
<paper-tooltip for="fwd" offset="0">back to the future</paper-tooltip>
</div>
</div>
<div>
<h4>Rich-text tooltips (not Material Design)</h4>
<div class="horizontal-section">
<div id="red" class="avatar red" tabindex="0"></div>
<div id="blue" class="avatar blue" tabindex="0"></div>
<div id="green" class="avatar green" tabindex="0"></div>
<div id="orange" class="avatar orange" tabindex="0"></div>
|
eb240478
Luigi Serra
public room cards...
|
130
|
<paper-tooltip for="red" class="custom" position="left" animation-delay="0">
|
73bcce88
luigser
COMPONENTS
|
131
132
133
|
<img src="http://i.imgur.com/OuUe8Da.jpg">
Rich-text tooltips are doable but against the Material Design spec.
</paper-tooltip>
|
eb240478
Luigi Serra
public room cards...
|
134
|
<paper-tooltip for="blue" class="custom" position="right" animation-delay="0">
|
73bcce88
luigser
COMPONENTS
|
135
136
137
|
<img src="http://i.imgur.com/OuUe8Da.jpg">
Rich-text tooltips are doable but against the Material Design spec.
</paper-tooltip>
|
eb240478
Luigi Serra
public room cards...
|
138
|
<paper-tooltip for="green" class="custom" position="top" animation-delay="0">
|
73bcce88
luigser
COMPONENTS
|
139
140
141
|
<img src="http://i.imgur.com/OuUe8Da.jpg">
Rich-text tooltips are doable but against the Material Design spec.
</paper-tooltip>
|
eb240478
Luigi Serra
public room cards...
|
142
|
<paper-tooltip for="orange" class="custom" position="bottom" animation-delay="0">
|
73bcce88
luigser
COMPONENTS
|
143
144
145
146
147
148
149
150
|
<img src="http://i.imgur.com/OuUe8Da.jpg">
Rich-text tooltips are doable but against the Material Design spec.
</paper-tooltip>
</div>
</div>
</div>
</body>
</html>
|