hframe 
Show HTML content "inside" your egui rendered application. "hframe" stands for "HTML Frame".
Note:
hframeonly works when the application is compiled to WebAssembly and run in a browser. But you can still make a desktop up by leveraging Tauri.egui-tauri-template will serve as good foundation if you need to target both platforms.
Simple example
use Aware;
const IFRAME: &str = r#"
<iframe src="https://www.example.com/"></iframe>
"#;
;
For a more complete example see demo's app.rs.
Running the demo
Ensure you have
trunkinstalled withcargo install --locked trunk.
git clone https://github.com/noxware/hframe
cd hframe/examples/demo
trunk serve --open
How does it work?
hframe renders the HTML content on top of the canvas where egui is rendering. Web content is absolute positioned following specifc areas of the canvas. To be
abale to show egui windows on top of the HTML content, hframe uses different set
of HTML masking/cliping techniques combined with other smart logic to produce the
illusion of the HTML content being "inside" the egui rendered application.
This approach has been chosen after many experiments with alternative techniques which were not able to provide the same level of integration and flexibility.
Additionally, some tracking is performed to provide an immediate mode like public API. HTML will only be re-rendered if you change the initially provided content. This can be useful if you want to change the HTML content in a controlled and reactive manner without giving up the immediate mode API.
Limitations
- The current implementation assumes that the canvas takes the whole screen and it is not scaled. The default configuration of the eframe_template will work.
- Currently the API only provides a way to create egui windows with HTML "inside" but doesn't provide a way to put bare HTML content in other places.