当你访问这个网站时,你已经看到了两边漂浮的年轻女士的视频。你想把年轻的女士们移到你的网站上吗?不用担心,互库网会和你分享这个功能的核心代码和风格代码。
核心代码
<!--右侧视频代码--> <!--互库网 - huku.cc--> <div style="position: fixed;top:400px;right:5px;"><!--调整右侧right距离--> <a href="#" rel="external nofollow" rel="external nofollow" ><video width="300" height="400" controls><!--调整视频宽度width与高度height--> <source src="http://cdn.51lm.tv/lm/spread/pc1905/video_2.mp4" type="video/mp4"> 您的浏览器不支持HTML5视频。</video> </a> </div>
<!--左侧视频代码--> <!--互库网 - huku.cc--> <div style="position: fixed;top:400px;left:5px;"> <!--调整左侧left距离 --> <a href="#" rel="external nofollow" rel="external nofollow" ><video width="300" height="400" controls> <!--调整视频宽度width与高度height--> <source src="http://cdn.51lm.tv/lm/spread/pc1905/video_2.mp4" type="video/mp4"> 您的浏览器不支持HTML5视频。</video> </a> </div>
<!--样式代码--> <!--互库网 - huku.cc--> <style> video { width: 200px; <!--调整播放器宽度--> vertical-align: bottom; } </style>