간략한 튜토리얼
이것은 멋진 HTML5 반응형 비디오 배경 애니메이션 효과입니다. 이 비디오 배경은 비디오를 화면 크기에 맞게 조정하여 멋지고 역동적인 비디오 배경 효과를 만들 수 있습니다.
사용법
bido.js 파일을 페이지에 도입하세요.
<script src="js/bideo.js"></script>
HTML 구조
비디오 배경 애니메이션 특수효과의 기본 HTML 구조는 다음과 같습니다.
<div id="container"> <video id="background_video" loop muted></video> <div id="video_cover"></div> <div id="overlay"></div> <div id="video_controls"> <span id="play"> <img src="play.png"> </span> <span id="pause"> <img src="pause.png"> </span> </div> <section id="main_content"> <div id="head"> <h1>Bideo.js</h1> <p class="sub_head">HTML5超酷响应式视频背景动画特效</p> </div> </section> </div>
JavaScript
페이지 하단에서 다음 js 코드를 사용하여 비디오 배경 애니메이션 효과를 초기화합니다.
(function () { var bv = new Bideo(); bv.init({ // Video element videoEl: document.querySelector('#background_video'), // Container element container: document.querySelector('body'), // Resize resize: true, // autoplay: false, isMobile: window.matchMedia('(max-width: 768px)').matches, playButton: document.querySelector('#play'), pauseButton: document.querySelector('#pause'), // Array of objects containing the src and type // of different video formats to add src: [ { src: 'vedio.mp4', type: 'video/mp4' }, { src: 'night.webm', type: 'video/webm;codecs="vp8, vorbis"' } ], // What to do once video loads (initial frame) onLoad: function () { document.querySelector('#video_cover').style.display = 'none'; } }); }());
위 내용은 HTML5 멋진 반응형 비디오 배경 애니메이션 특수효과 내용입니다. 더 많은 관련 내용은 PHP 중국어 홈페이지(m.sbmmt.com)를 참고해주세요!