mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-14 16:37:14 +00:00
d9546d9504
* feat: use synchronous router design * feat: function to get router out of dom * chore: restructure workspace to use renderers as packages, not features
113 lines
3 KiB
Rust
113 lines
3 KiB
Rust
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus_tui::launch(app);
|
|
}
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
let alpha = use_state(&cx, || 100);
|
|
|
|
cx.render(rsx! {
|
|
div {
|
|
width: "100%",
|
|
height: "100%",
|
|
flex_direction: "column",
|
|
onwheel: move |evt| alpha.set((**alpha + evt.data.delta().strip_units().y as i64).min(100).max(0)),
|
|
|
|
p {
|
|
background_color: "black",
|
|
flex_direction: "column",
|
|
justify_content: "center",
|
|
align_items: "center",
|
|
color: "green",
|
|
"hi"
|
|
"hi"
|
|
"hi"
|
|
}
|
|
|
|
li {
|
|
background_color: "red",
|
|
flex_direction: "column",
|
|
justify_content: "center",
|
|
align_items: "center",
|
|
"bib"
|
|
"bib"
|
|
"bib"
|
|
"bib"
|
|
"bib"
|
|
"bib"
|
|
"bib"
|
|
"bib"
|
|
}
|
|
li {
|
|
background_color: "blue",
|
|
flex_direction: "column",
|
|
justify_content: "center",
|
|
align_items: "center",
|
|
"zib"
|
|
"zib"
|
|
"zib"
|
|
"zib"
|
|
"zib"
|
|
"zib"
|
|
}
|
|
p {
|
|
background_color: "yellow",
|
|
"asd"
|
|
}
|
|
p {
|
|
background_color: "green",
|
|
"asd"
|
|
}
|
|
p {
|
|
background_color: "white",
|
|
"asd"
|
|
}
|
|
p {
|
|
background_color: "cyan",
|
|
"asd"
|
|
}
|
|
div {
|
|
font_weight: "bold",
|
|
color: "#666666",
|
|
p {
|
|
"bold"
|
|
}
|
|
p {
|
|
font_weight: "normal",
|
|
" normal"
|
|
}
|
|
}
|
|
p {
|
|
font_style: "italic",
|
|
color: "red",
|
|
"italic"
|
|
}
|
|
p {
|
|
text_decoration: "underline",
|
|
color: "rgba(255, 255, 255)",
|
|
"underline"
|
|
}
|
|
p {
|
|
text_decoration: "line-through",
|
|
color: "hsla(10, 100%, 70%)",
|
|
"line-through"
|
|
}
|
|
div{
|
|
position: "absolute",
|
|
top: "1px",
|
|
background_color: "rgba(255, 0, 0, 50%)",
|
|
width: "100%",
|
|
p {
|
|
color: "rgba(255, 255, 255, {alpha}%)",
|
|
background_color: "rgba(100, 100, 100, {alpha}%)",
|
|
"rgba(255, 255, 255, {alpha}%)"
|
|
}
|
|
p {
|
|
color: "rgba(255, 255, 255, 100%)",
|
|
"rgba(255, 255, 255, 100%)"
|
|
}
|
|
}
|
|
}
|
|
})
|
|
}
|