40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
@using CRM.Core.Model.Entity
|
|
@using Core.Web.WebHelper
|
|
@{
|
|
/**/
|
|
|
|
ViewBag.Title = "Index";
|
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
|
}
|
|
<link rel="stylesheet" href="//g.alicdn.com/de/prismplayer/2.9.3/skins/default/aliplayer-min.css" />
|
|
<script type="text/javascript" charset="utf-8" src="//g.alicdn.com/de/prismplayer/2.9.3/aliplayer-min.js"></script>
|
|
<style>
|
|
.self-table-click td {
|
|
background-color: #f3ebbc;
|
|
}
|
|
|
|
.showMsg {
|
|
margin-left: 20px;
|
|
cursor: pointer;
|
|
}
|
|
</style>
|
|
<div class="x-body">
|
|
<div colspan="2" class="b">
|
|
<div id="player-con" style="width: 550px; height: 380px; "></div>
|
|
<script>
|
|
var player = new Aliplayer({
|
|
id: "player-con",
|
|
source: "//v.cdn.dn8188.com/@ViewBag.url",
|
|
width: "100%",
|
|
height: "100%",
|
|
autoplay: false,
|
|
isLive: false,
|
|
controlBarVisibility: "always",
|
|
}, function (player) {
|
|
console.log("The player is created");
|
|
});
|
|
</script>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
</script> |