With Static Text
Demo[area://sensei/docs/ui/promo-video/example-static]
Video BG
With Static Text
Code[area://sensei/docs/ui/promo-video/example-static]
<?php
use Nether\Atlantis;
echo Atlantis\UI\PromoVideo::FromSurfaceWith($Surface, [
'VideoURL' => '/themes/default/gfx/underwater001.mp4',
'Overlay' => 'grad-focus-dark',
'Title' => 'Video BG',
'Subline' => 'With Static Text'
]);
With Typeified Text
Demo[area://sensei/docs/ui/promo-video/example-typeify]
Code[area://sensei/docs/ui/promo-video/example-typeify]
<?php
use Nether\Atlantis;
echo Atlantis\UI\PromoVideo::FromSurfaceWith($Surface, [
'VideoURL' => '/themes/default/gfx/underwater001.mp4',
'Overlay' => 'grad-focus-dark',
'Title' => 'Video BG',
'Subline' => 'With Typed Text',
'Typeify' => TRUE
]);