教你如何给网站添加随机小姐姐在线跳舞视频

之前找资源时,看到其他网站有这个在线小姐姐跳舞视频,于是出于新奇,就把代码扒了下来,视频来自外部网站,什么时候失效不是很确定,大家自行拿去玩玩吧!

扒下来发现样式太丑,凑合修改了一下css,分享给大家,将下方代码复制粘贴到你自己的网站需要展示的地方即可,也可以文章页面。

案列:http://www.qzhan.vip/post/7743.html

Markup
<div>
    <section id="main">
        <video id="player" src="http://v.nrzj.vip/video.php" controls="controls" width="100%" height="400px"></video>
    </section>
</div>

<div style="text-align: center;">
    <section id="buttons">
        <button id="switch">连续: 开</button>
        <button id="next1">换一个</button>
    </section>
</div>

<script src="https://hm.baidu.com/hm.js?a8569fd6981018f096d774868306a054"></script>
<script>
    (function (window, document) {
        if (top != self) {
            window.top.location.replace(self.location.href);
        }
        var get = function (id) {
            return document.getElementById(id);
        }
        var bind = function (element, event, callback) {
            return element.addEventListener(event, callback);
        }
        var auto = true;
        var player = get('player');
        var randomm = function () {
            player.src = 'http://v.nrzj.vip/video.php?_t=' + Math.random();
            player.play();
        }
        bind(get('next1'), 'click', randomm);
        bind(player, 'error', function () {
            randomm();
        });
        bind(get('switch'), 'click', function () {
            auto = !auto;
            this.innerText = '连续: ' + (auto ? '开' : '关');
        });
        bind(player, 'ended', function () {
            if (auto) randomm();
        });
    })(window, document);</script><script>var _hmt = _hmt || [];(function() {var hm = document.createElement("script");hm.src = "https://hm.baidu.com/hm.js?a8569fd6981018f096d774868306a054";var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s);})();
</script>


<style>
    #switch,#next1{
    background: #7F9CCC;
    color:#fff;
    line-height:40px;
    text-align:center;
    width:100px;
    border:none;
    margin:0 6px;
    border-radius:6px;
    font-weight:bold;
    }
</style>

版权声明:
作者:牛部落
链接:https://www.tnell.com/239.html
来源:天牛博客
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>