侧边栏壁纸
博主头像
科技美南博客 博主等级

科技改变生活,分享创造快乐

  • 累计撰写 67 篇文章
  • 累计创建 258 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

网站添加在线随机小姐姐跳舞视频

科技美南
2024-02-28 / 0 评论 / 4 点赞 / 268 阅读 / 0 字
温馨提示:
本文最后更新于2024-04-30,若内容或图片失效,请留言反馈。 部分素材来自网络,若不小心影响到您的利益,请联系我们删除。

网站添加在线随机小姐姐跳舞视频

将下方代码复制粘贴到你自己的网站需要展示的地方即可,也可以文章页面。视频来自外部网站,失效后自行替换接口。

视频演示效果

侧栏效果演示

浅色主题效果:

20240228185654.jpg

深色主题效果:

20240228185636.jpg

以下是完整的代码

<div>
    <section id="main">
        <video id="player" src="https://dy.mn.cyou/videoapi.php" controls="controls" width="100%" height="498px"></video>
    </section>
</div>
<div style="text-align: center;">
    <section id="buttons">
        <button id="switch">连续: 开</button>
        <button id="next1">开盲盒</button>
    </section>
</div>
<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>
<style>
    #switch,#next1{
    background: #FB6C28;
    color:#fff;
    line-height:40px;
    text-align:center;
    width:100px;
    border:none;
    margin:15px 6px;
    border-radius:6px;
    font-weight:bold;
    }
</style>
4
  1. 支付宝打赏

    qrcode alipay
  2. 微信打赏

    qrcode weixin
  3. QQ打赏

    qrcode qq

评论区