Package | Description |
---|---|
bayou.html |
For building html trees.
|
Modifier and Type | Method and Description |
---|---|
default Html5.VIDEO |
Html5._video()
Build element
<video> . |
default Html5.VIDEO |
Html5._video(Object... children)
Build element
<video> with children. |
default Html5.VIDEO |
Html5._video(Runnable code)
Build element
<video> ; with it as the context parent, run `code`. |
Html5.VIDEO |
Html5.VIDEO.autoplay(boolean value)
Set boolean attribute
autoplay . |
Html5.VIDEO |
Html5.VIDEO.controls(boolean value)
Set boolean attribute
controls . |
Html5.VIDEO |
Html5.VIDEO.crossorigin(CharSequence value)
Set attribute
crossorigin="{value}" . |
Html5.VIDEO |
Html5.VIDEO.height(int value)
Set attribute
height="{value}" . |
Html5.VIDEO |
Html5.VIDEO.loop(boolean value)
Set boolean attribute
loop . |
Html5.VIDEO |
Html5.VIDEO.mediagroup(CharSequence value)
Set attribute
mediagroup="{value}" . |
Html5.VIDEO |
Html5.VIDEO.muted(boolean value)
Set boolean attribute
muted . |
Html5.VIDEO |
Html5.VIDEO.poster(CharSequence value)
Set attribute
poster="{value}" . |
Html5.VIDEO |
Html5.VIDEO.preload(CharSequence value)
Set attribute
preload="{value}" . |
Html5.VIDEO |
Html5.VIDEO.src(CharSequence value)
Set attribute
src="{value}" . |
Html5.VIDEO |
Html5.VIDEO.width(int value)
Set attribute
width="{value}" . |