magnificent-caravan-75149
08/10/2019, 4:45 PMuser
08/10/2019, 7:40 PMbright-gpu-74537
08/11/2019, 9:17 AMHorizontalSlider
(rather than Slider
)... that implements the functions... that said, it would be nice maybe to somehow be able to use Slider
also... ill have a think, but the "fix" is to use the "Horizontal" or "Vertical" variants of classes (Slider, Scroll, Progress, Range) - ill have a think about the making this a little more sensiblebright-gpu-74537
08/11/2019, 9:18 AMbright-gpu-74537
08/11/2019, 9:19 AMbright-gpu-74537
08/11/2019, 9:20 AMbright-gpu-74537
08/11/2019, 9:20 AMbackground-image-repeat: stretch
bright-gpu-74537
08/11/2019, 9:21 AMbright-gpu-74537
08/11/2019, 9:21 AMbright-gpu-74537
08/11/2019, 9:22 AMbright-gpu-74537
08/11/2019, 9:22 AMxml
<box width="..." height="...">
<image width="100%" height="100%>
<vbox>
<button text="The rest of my UI" />
</vbox>
</box>
bright-gpu-74537
08/11/2019, 9:23 AMbackground-image-repeat: stretch
) then this should work until size is addedlimited-advantage-32748
08/11/2019, 2:01 PMlimited-advantage-32748
08/11/2019, 3:06 PMlimited-advantage-32748
08/11/2019, 3:07 PMlimited-advantage-32748
08/11/2019, 3:07 PMmagnificent-caravan-75149
08/11/2019, 6:16 PMmagnificent-caravan-75149
08/11/2019, 6:18 PMbitter-family-72722
08/11/2019, 7:57 PMbright-gpu-74537
08/12/2019, 6:50 AMbright-gpu-74537
08/12/2019, 7:15 AMopacity
and background-opacity
should work... are they not for you? What backend?bright-gpu-74537
08/12/2019, 7:15 AMbright-gpu-74537
08/12/2019, 7:15 AMxml
<style>
@keyframes fade {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
#ex1.fadeIn {
animation: fade 0.5s ease 0s 1;
}
#ex1.fadeOut {
animation: fade 0.5s ease 0s 1 reverse backwards;
}
</style>
<image id="ex1" resource="haxeui-core/styles/default/haxeui.png" style="opacity: 0;" />
<button text="fadeIn" onclick="ex1.swapClass('fadeIn', 'fadeOut')" />
<button text="fadeOut" onclick="ex1.swapClass('fadeOut', 'fadeIn')" />
bright-gpu-74537
08/12/2019, 7:16 AMswapClass
call, so you'll need latest master, but you could do the same anyway with addClass
& removeClass
)bright-gpu-74537
08/12/2019, 7:53 AMbright-gpu-74537
08/12/2019, 8:07 AMbright-gpu-74537
08/12/2019, 8:45 AMbright-gpu-74537
08/12/2019, 9:46 AMbright-gpu-74537
08/12/2019, 9:46 AMhandsome-television-62908
08/12/2019, 9:57 AM