分類
- 1app
- 2選項卡
- 3后臺
- 4彈窗
- 5下拉菜單
<style type="text/css"> body{background-color: #222} .videolist { position:relative; float:left; width:500px; height:300px; margin-right:50px; margin-top:15px; margin-bottom:30px; } .videolist:hover{ cursor: pointer; } .videoed { display:none; width:50px; height:50px; position: absolute; left:45%; top:45%; z-index:99; border-radius:100%; } .videos{ display:none; border: 1px solid #080808; position:fixed; left:50%; top:50%; margin-left:-320px; margin-top:-210px; z-index:100; width:640px; height:360px; } .vclose { position:absolute;right:1%; top:1%; border-radius:100%; cursor: pointer; } </style>
<script type="text/javascript" src="js/jquery.min.js"></script>
<div class="video"> <div class="container" style="margin-top: 100px"> <div class="videolist" vpath="v1.jpg" ipath="https://blz-videos.nosdn.127.net/1/OverWatch/OVR-S03_E03_McCree_REUNION_zhCN_1080P_mb78.mp4"> <div class="vtit">視頻一</div> <img src="img/v1.jpg" width="540px" height="300px" /> <div class="vtime">2018-06-22</div> <img src="img/play.png" class="videoed"/> </div> <div class="videolist" vpath="v2.jpg" ipath="https://blz-videos.nosdn.127.net/1/OverWatch/AnimatedShots/Overwatch_AnimatedShot_CinematicTrailer.mp4"> <div class="vtit">視頻一</div> <img src="img/v2.jpg" width="540px" height="300px" /> <div class="vtime">2018-06-22</div> <img src="img/play.png" class="videoed"/> </div> <div class="videos"></div> </div> </div> <script type="text/javascript"> $('.videolist').each(function(){ //遍歷視頻列表 $(this).hover(function(){ //鼠標移上來后顯示播放按鈕 $(this).find('.videoed').show(); },function(){ $(this).find('.videoed').hide(); }); $(this).click(function(){ //這個視頻被點擊后執行 var img = $(this).attr('vpath');//獲取視頻預覽圖 var video = $(this).attr('ipath');//獲取視頻路徑 $('.videos').html("<video id=\"video\" poster='"+img+"' style='width: 640px' src='"+video+"' preload=\"auto\" controls=\"controls\" autoplay=\"autoplay\"></video><img onClick=\"close1()\" class=\"vclose\" src=\"img/gb.png\" width=\"25\" height=\"25\"/>"); $('.videos').show(); }); }); function close1(){ var v = document.getElementById('video');//獲取視頻節點 $('.videos').hide();//點擊關閉按鈕關閉暫停視頻 v.pause(); $('.videos').html(); } </script>
1. 本站所有素材(未指定商用),僅限學習交流。
2. 會員在本站下載的原創商用和VIP素材后,只擁有使用權,著作權歸原作者及17素材網所有。
3. 原創商用和VIP素材,未經合法授權,請勿用于商業用途,會員不得以任何形式發布、傳播、復制、轉售該素材,否則一律封號處理。
4. 本平臺織夢模板僅展示和個人非盈利用途,織夢系統商業用途請預先授權。