actor picker 1

This commit is contained in:
François-Xavier Guillois
2023-09-01 19:59:44 +02:00
parent 918b7c0b0c
commit e11525564a
13 changed files with 136 additions and 20 deletions
+8
View File
@@ -0,0 +1,8 @@
<div class="actor choose flexrow row">
{{#each actorsList as | actor akey|}}
<div class="actor rounded-full" data-totem="{{ tk }}" data-id="{{ actor.id }}" style="position:relative; width:100px;height:100px;">
<span class="flexrow w-full flex-group-center flex-align-center" style="position:absolute;z-index:10;height:100%;">{{ actor.name }}</span>
<img src="{{ actor.img }}" alt="{{ actor.name }}" width="100" height="100" style="position:relative;" />
</div>
{{/each}}
</div>