bright-gpu-74537
12/29/2020, 8:41 PMxml
<vbox width="100%">
<hbox width="100%">
<label width="120" text="Contents 2 field A" verticalAlign="center" />
<textfield width="100%" />
</hbox>
<hbox width="100%">
<label width="120" text="Contents 2 field B" verticalAlign="center" />
<textfield width="100%" />
</hbox>
</vbox>bright-gpu-74537
12/29/2020, 8:42 PMbright-gpu-74537
12/29/2020, 8:42 PMWarning : The super class of 'Dialog1' does not match the root node of 'assets/base-dialog.xml' (BaseDialog != haxe.ui.containers.dialogs.Dialog) - this may have unintended consequencesbright-gpu-74537
12/29/2020, 8:43 PMbright-gpu-74537
12/29/2020, 8:44 PMmagnificent-caravan-75149
12/29/2020, 9:16 PMmagnificent-caravan-75149
12/29/2020, 10:19 PMbright-gpu-74537
12/30/2020, 7:05 AMbright-gpu-74537
12/30/2020, 7:05 AMmagnificent-caravan-75149
12/30/2020, 5:02 PMmagnificent-caravan-75149
12/30/2020, 5:25 PMmagnificent-caravan-75149
12/30/2020, 5:59 PMmagnificent-caravan-75149
12/30/2020, 6:07 PMmost-caravan-45834
01/01/2021, 10:12 PMfast-rain-20339
01/02/2021, 3:58 AMbright-gpu-74537
01/02/2021, 9:39 AMbright-gpu-74537
01/02/2021, 9:40 AMhtml
<style>
@keyframes anim {
0% {
border-color: #0000FF;
border-size: 5px;
border-radius: 20px;
background-color: red;
color: white;
}
50% {
border-color: #FF00FF;
border-size: 1px;
border-radius: 0px;
background-color: white;
color: red;
}
100% {
border-color: #0000FF;
border-size: 5px;
border-radius: 20px;
background-color: red;
color: white;
}
}
.button {
animation: anim 1s linear 0s infinite;
}
</style>
<button text="Snazzzy!" onclick="this.text='Thanks!'" style="font-size: 48px;" />bright-gpu-74537
01/02/2021, 9:42 AMbright-gpu-74537
01/02/2021, 10:49 AMmost-caravan-45834
01/02/2021, 3:15 PMbright-gpu-74537
01/02/2021, 4:52 PMmost-caravan-45834
01/02/2021, 4:55 PMmost-caravan-45834
01/02/2021, 4:55 PMbright-gpu-74537
01/02/2021, 4:55 PMmost-caravan-45834
01/02/2021, 9:28 PMcss
.selectedBorder {
border: 1px solid blue;
animation: borderAnim 1s linear 0s infinite;
}
.unselectedBorder {
border: none;
}
@keyframes borderAnim {
0% { border-color: #0000FF; }
50% { border-color: #00FF00; }
100% { border-color: #0000FF; }
}most-caravan-45834
01/02/2021, 9:28 PMhaxe
this.swapClass("unselectedBorder", "selectedBorder");
I get a border with no animation and with the last animated color, when what I wanted was no borderbright-gpu-74537
01/02/2021, 9:38 PMbright-gpu-74537
01/02/2021, 9:38 PMbright-gpu-74537
01/02/2021, 9:38 PMbright-gpu-74537
01/02/2021, 9:46 PM