zoukankan      html  css  js  c++  java
  • 腾讯视频插入网页的代码;

    想要在网页中嵌入优酷、土豆、爱奇艺的视频很简单,但是现在将腾讯视频嵌入网页后却不能正常显示,而腾讯视频现在的资源也越来越多,想直接将腾讯视频嵌入到网页中怎么操作呢?其实只需要一段代码就可以了。

    首先,提供一个腾讯视频嵌入网页代码。我们只需替换这段代码的一部分就可以了。

    <p style="text-align: center"><iframe class="video_iframe" style="z-index:1;" src=" https://v.qq.com/x/page/z3053xajtuk.html&url_from=share&second_share=0&share_from=copy;width=500&amp;height=375&amp;auto=0" allowfullscreen="" frameborder="0" height="375" width="500"></iframe></p>

    找到一段腾讯视频,比如地址:

    这是一段 我个人旅游的视频 的视频,将这个网址的蓝色部分,替换到上面给出的代码中的红色部分,就可以了。

    step1: 

    比如这个是我的视频地址:

    这个page之后的z30****就是 你发布视频的uuid 唯一地址信息;

    最终效果为:

    <p style="text-align: center"><iframe class="video_iframe" style="z-index:1;" src="http://v.qq.com/iframe/player.html?vid=z3053xajtuk&amp;width=500&amp;height=375&amp;auto=0" allowfullscreen="" frameborder="0" height="375" width="500"></iframe></p>

    step2.

    其实就是前端展现的时候 将视频地址替换成 腾讯视频的url地址

  • 相关阅读:
    ORA-12170 TNS 连接超时
    判断字符串里面是否包含汉字
    关于Try/Catch 代码块
    SOLID 原则
    整洁代码原则
    装箱 拆箱
    存储过程优缺点
    ANTLR Tool version 4.4中使用ANTLR 4.7.1
    The Apache Tomcat installation at this directory is version 8.5.40. A Tomcat 8.0 installation is expected.
    实现功能:构建一个JSON到XML的翻译器。
  • 原文地址:https://www.cnblogs.com/SlashOut/p/13511689.html
Copyright © 2011-2022 走看看