更改解析方式

master
178146582 6 years ago
parent 025fbf9576
commit ad3fe92baa
  1. 1
      public/css/main.css
  2. 79
      resources/views/detail.blade.php

@ -70,3 +70,4 @@ li{list-style:none}
.w-newfigure-180x321{width:180px;height:100px}
.w-newfigure-380x268{width:380px;height:268px}
.dianying img{height:306px;width:230px}
#vip-player{background-color: #000;margin-bottom: -5px;margin-top: -6px;min-height: 600px;width: 100%;}

@ -6,7 +6,7 @@
<div class="am-panel am-panel-success">
<div class="am-panel-hd">{{$res[2]}}</div>
<div id="video"></div>
<iframe id="vip-player" src="" allowtransparency="true" scrolling="No"></iframe>
</div>
<div class="am-panel am-panel-success my-panel">
<div class="am-panel-hd">简介</div>
@ -35,28 +35,23 @@
@endsection
@section('js')
var videoObject = {
container: '#video',
variable: 'player',
autoplay: false,
drag: 'start',
seek: 0,
adpause: 'https://ws4.sinaimg.cn/large/0072Vf1ply1fvjidch261g308c06yglu.jpg,https://ws1.sinaimg.cn/large/0072Vf1ply1fvjidctnoug308c06y0t6.jpg',
adpausetime: '5,5',
adpauselink: 'https://www.52ecy.cn/post-84.html,https://www.52ecy.cn/post-77.html',
video: ''
};
var player = new ckplayer(videoObject);
$('.my-btn').on('click', function() {
$(".my-btn").click(function() {
$('.my-btn').removeClass('am-btn-success');
$(this).addClass('am-btn-success');
layer.tips('准备播放' + $(this).html() + '集', this, {
layer.tips('准备播放' + $(this).html(), this, {
tips: 1
});
api($(this).attr('data-url'))
refreshVideo($(this).attr('data-url'));
});
api('{{$video}}');
function api(url) {
function refreshVideo(videoUrl) {
record();
$("#vip-player").attr("src", 'http://yun.baiyug.cn/vip/index.php?url=' + videoUrl);
}
refreshVideo('{{$video}}');
function record(){
var histemp = store.get('history') ? store.get('history') : [];
for (var i = 0; i < histemp.length; i++) {
if (histemp[i].name == "{{$res[2]}}" && histemp[i].url == document.location.toString()) {
@ -70,53 +65,5 @@ function api(url) {
});
if (histemp.length > 6) histemp.length = 6;
store.set('history', histemp);
$.post('{{url('api')}}', {
'url': url,
'_token': '{{csrf_token()}}'
}, function(res) {
if (res.status != '0') {
layer.msg(res.msg, {
icon: 5
});
return
}
changeVideo(res.msg)
})
}
function changeVideo(videoUrl) {
if (player == null) {
return
}
var newVideoObject = {
container: '#video',
variable: 'player',
autoplay: true,
drag: 'start',
seek: 0,
adpause: 'https://ws4.sinaimg.cn/large/0072Vf1ply1fvjidch261g308c06yglu.jpg,https://ws1.sinaimg.cn/large/0072Vf1ply1fvjidctnoug308c06y0t6.jpg',
adpausetime: '5,5',
adpauselink: 'https://www.52ecy.cn/post-84.html,https://www.52ecy.cn/post-77.html',
promptSpot: [{words: '萌音影视',time: 300}, {words: 'www.moeins.cn',time: 150}],
loaded: 'loadedHandler',
video: videoUrl
};
if (player.playerType == 'html5video') {
if (player.getFileExt(videoUrl) == '.flv' || player.getFileExt(videoUrl) == '.m3u8' || player.getFileExt(videoUrl) == '.f4v' || videoUrl.substr(0, 4) == 'rtmp') {
player.removeChild();
player = null;
player = new ckplayer();
player.embed(newVideoObject)
} else {
player.newVideo(newVideoObject)
}
} else {
if (player.getFileExt(videoUrl) == '.mp4' || player.getFileExt(videoUrl) == '.webm' || player.getFileExt(videoUrl) == '.ogg') {
player = null;
player = new ckplayer();
player.embed(newVideoObject)
} else {
player.newVideo(newVideoObject)
}
}
}
@endsection
Loading…
Cancel
Save