From 8de13860e8e99bce4e8114b86fff14063d53eb0f Mon Sep 17 00:00:00 2001 From: Elias Pozewaunig <64259275+elpozewaunig@users.noreply.github.com> Date: Fri, 15 Nov 2024 02:00:19 +0100 Subject: [PATCH] Added web support for all missing splash screen properties show_image, fullsize and use_filter are now supported too. bg_color, image and minimum_display_time were already supported previously. --- misc/dist/html/full-size.html | 16 +++++++++++++++- platform/web/export/export_plugin.cpp | 6 ++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/misc/dist/html/full-size.html b/misc/dist/html/full-size.html index 4bb311fe7b1..92b2b82ee7e 100644 --- a/misc/dist/html/full-size.html +++ b/misc/dist/html/full-size.html @@ -52,6 +52,20 @@ body { margin: auto; } +#status-splash.show-image--false { + display: none; +} + +#status-splash.fullsize--true { + height: 100%; + width: 100%; + object-fit: contain; +} + +#status-splash.use-filter--false { + image-rendering: pixelated; +} + #status-progress, #status-notice { display: none; } @@ -88,7 +102,7 @@ body {