Mercurial > code > home > repos > light9
diff web/timeline/inline-attrs.html @ 2376:4556eebe5d73
topdir reorgs; let pdm have its src/ dir; separate vite area from light9/
author | drewp@bigasterisk.com |
---|---|
date | Sun, 12 May 2024 19:02:10 -0700 |
parents | light9/web/timeline/inline-attrs.html@d6b7567e8d19 |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/timeline/inline-attrs.html Sun May 12 19:02:10 2024 -0700 @@ -0,0 +1,33 @@ +<link rel="import" href="/lib/polymer/polymer-element.html"> +<link rel="import" href="../light9-color-picker.html"> +<link rel="import" href="../edit-choice.html"> + +<!-- sometimes we draw attrs within the shape of a note. --> +<dom-module id="light9-timeline-note-inline-attrs"> + <template> + <style> + :host { + position: absolute; + + display: block; + overflow: hidden; + background: rgba(19, 19, 19, 0.65); + border-radius: 6px; + border: 1px solid #313131; + padding: 3px; + z-index: 2; + color: white; + } + </style> + + <div>note [[noteLabel]] <button on-click="onDel">del</button></div> + <table> + <tr><th>effect:</th><td><edit-choice id="effect" graph="{{graph}}" uri="{{effectStr}}"></edit-choice></td></tr> + <tr><th>colorScale:</th><td> + <light9-color-picker color="{{colorScale}}"></light9-color-picker> + </td></tr> + </table> + <img src="/show/dance2019/anim/rainbow1.png"> + </template> + <script src="inline-attrs.js"></script> +</dom-module>