Add music video

This commit is contained in:
Jesse C. Fisher 2023-05-10 15:22:28 +00:00
parent 0e373ddbbf
commit 23201ce02c
4 changed files with 22 additions and 0 deletions

View File

@ -163,3 +163,19 @@ footer
.hide
display: none
.video-cover
position: absolute
z-index: 2
top: 0
left: 0
width: 100%
height: 100%
#videoplayer
position: absolute
z-index: 1
top: 0
left: 0
width: 100%
height: 100%
object-fit: fill

BIN
app/assets/videos/video.mp4 Normal file

Binary file not shown.

View File

@ -23,3 +23,8 @@
.eyecandy
= image_tag "ICYPEES-coin.png"
-# %iframe#videoplayer{:allowfullscreen => "", :frameborder => "0", :height => "480", :mozallowfullscreen => "true", :src => "https://archive.org/embed/my-dinner-with-andre-conspiracy-theory-scene-hd", :webkitallowfullscreen => "true", :width => "640", :autostart => "true"}
-# %iframe{:allow => "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share", :allowfullscreen => "", :frameborder => "0", :height => "315", :src => "https://www.youtube.com/embed/kK-1axSGkXc", :title => "YouTube video player", :width => "560"}
-# %iframe#videoplayer{:allow => "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share", :allowfullscreen => "", :frameborder => "0", :height => "315", :src => "https://www.youtube.com/embed/PhIM5k_m_hs", :title => "YouTube video player", :width => "560"}
.video-cover
= video_tag "video.mp4", autoplay: true, id: "videoplayer", loop: true

View File

@ -33,5 +33,6 @@ module ThirteenTienLen
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
# config.i18n.default_locale = :de
config.assets.paths << "#{Rails.root}/app/assets/videos"
end
end