Update frameless example

This commit is contained in:
Albert 2025-03-25 16:12:31 -04:00
parent 65fd9a8800
commit 9dd20b5c98

View File

@ -41,7 +41,7 @@ const char* html =
" .button:hover { filter: brightness(120%); }" " .button:hover { filter: brightness(120%); }"
" #content {" " #content {"
" height: calc(100% - 40px);" " height: calc(100% - 40px);"
" background: rgba(0, 0, 0, 0.5);" " background: rgba(0, 0, 0, 0.7);"
" display: flex;" " display: flex;"
" align-items: center;" " align-items: center;"
" justify-content: center;" " justify-content: center;"
@ -89,9 +89,10 @@ int main() {
webui_bind(my_window, "maximize", maximize); webui_bind(my_window, "maximize", maximize);
webui_bind(my_window, "close_win", close_win); webui_bind(my_window, "close_win", close_win);
webui_set_size(my_window, 800, 600);
webui_set_frameless(my_window, true); webui_set_frameless(my_window, true);
webui_set_transparent(my_window, true); webui_set_transparent(my_window, true);
webui_set_resizable(my_window, true); webui_set_resizable(my_window, false);
webui_set_center(my_window); webui_set_center(my_window);
webui_show_wv(my_window, html); webui_show_wv(my_window, html);