1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| <!DOCTYPE body PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
| <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
|
| <header>
| <meta
| content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
| name="viewport" />
| <script src="http://tv.sohu.com/upload/static/player/player.js"></script>
| <script src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>
| </header>
|
| <%
| String bid = request.getParameter("vid");
| %>
| <body style="width:100%;margin:0;">
| <div id="sohuplayer" style="width:100%;"></div>
| <script>
| document.getElementById("sohuplayer").innerHTML = createSHPlayer({
| bid :<%=bid%>,
| autoplay : false,
| vars : {
| "enforceHTML5" : true
| },
| width :$(window).width(),
| height :$(window).width()*9/16,
| getHTML : true,
| showCtrlBar : 0,
| channelSrc : 11510001,
| lqd : 19278,
| lcode : "AAAAFjYZuHLpDjJ1CJJWYq1_EGNbccUcDrhjKk..sk5"
| });
| </script>
| </body>
|
|
|
| </html>
|
|