play
丁俊晖决赛晋级回顾
play
丁俊晖首进世锦赛决赛
向前
向后
/*自动播放1*/
var AUTOPLAY = 1;
/*连播1*/
var CONTIPLAY = 1;
/*处理自动播放选项和cookie*/
(function() {
var Tool = CommonTool;
var chk = Tool.byId('J_Video_Autoplay');
var ua = navigator.userAgent.toLowerCase();
var isIOS = /\((iPhone|iPad|iPod)/i.test(ua);
if (isIOS) {
console.log(chk.parentNode.style.display);
chk.parentNode.style.display = 'none';
return;
}
chk.parentNode.style.display = '';
var clickCookie = function() {
Tool.bindEvent(chk, 'change',
function() {
var chked = chk.checked;
Tool.writeCookie('ArtiVAuto', (chked ? 1 : 0), 24 * 365 * 10, '/', '.sina.com.cn');
});
}
var byCookie = function() {
var coo = Tool.readCookie('ArtiVAuto');
if (coo) {
if (parseInt(coo) == 0) {
chk.checked = false;
AUTOPLAY = 0;
}
}
};
clickCookie();
byCookie();
})();
/*获取第一个视频vid*/
var firstItem = CommonTool.byClass('J_Play_Item', 'J_Play_List')[0];
var fInfo = firstItem.getAttribute('play-data').split('-');
var fVid = fInfo[0];
var fPid = fInfo[1];
var sinaBokePlayerConfig_o = {
container: "J_Article_Player", //Div容器的id
width: 525,
height: 430,
playerWidth: 525, //宽
playerHeight: 430, //高
autoLoad: 1, //自动加载
autoPlay: AUTOPLAY, //自动播放
as: 1, //广告
pid: fPid,
tjAD: 0, //显示擎天柱广告
tj: 1, //片尾推荐
continuePlayer: 1, //连续播放
casualPlay: 1, //任意拖动视频
head: 0, //播放片头动画
logo: 0, //显示logo
share: 0,
thumbUrl: ""
};
(function() {
var toggle = function(id, hide) {
var e = CommonTool.byId(id);
var par = e.parentNode;
if (hide) {
CommonTool.addClass(par, e.className + '_disabled');
} else {
CommonTool.removeClass(par, e.className + '_disabled');
}
}
var scroll = new ScrollPic();
scroll.scrollContId = "J_Play_List"; //内容容器ID
scroll.arrLeftId = "J_Player_Prev"; //左箭头ID
scroll.arrRightId = "J_Player_Next"; //右箭头ID
scroll.listEvent = "onclick"; //切换事件
scroll.frameWidth = 532; //显示框宽度 **显示框宽度必须是翻页宽度的倍数
scroll.pageWidth = 133 * 3; //翻页宽度
scroll.upright = false; //垂直滚动
scroll.speed = 10; //移动速度(单位毫秒,越小越快)
scroll.space = 15; //每次移动像素(单位px,越大越快)
scroll.autoPlay = false; //自动播放
scroll.autoPlayTime = 5; //自动播放间隔时间(秒)
scroll.circularly = false;
scroll._move = scroll.move;
scroll.move = function(num, quick) {
scroll._move(num, quick);
toggle(scroll.arrRightId, scroll.eof);
toggle(scroll.arrLeftId, scroll.bof);
};
scroll.initialize(); //初始化
toggle(scroll.arrLeftId, scroll.bof);
})();
var autoPlayCheck = $("#J_Video_Autoplay")[0].checked;
var autoPlayFlv = 0;
var autoPlayH5 = false;
if(autoPlayCheck){
autoPlayFlv = 1;
var autoPlayH5 = true;
}
var flashConfig = {
url: "", // flash播放器地址,
container : "J_Article_Player",
id: "myMovie",
width: 525,
height: 430,
params : {
allowNetworking : "all",
allowScriptAccess : "always",
wmode : "opaque",
allowFullScreen : "true",
quality : "high"
},
attributes: {},
flashvars: {
autoPlay: autoPlayFlv, //是否自动播放
loop: 0,
autoLoad: 1,
thumbUrl: '',
tj: 1,
as: 1,
mode: 2
},
h5attr: {
autoPlay: autoPlayH5, //是否自动播放
controls: true, //是否显示控制条
loop: false,
poster: '', //视频加载前欲加载的图片地址,即播放器一开始显示的截图
preload: 'auto'
}
};
var videoList = [
{
video_id: '250572952',
source:'',
pid:'6',
url: 'http://video.sina.com.cn/view/250572952.html',
title:'丁俊晖决赛晋级回顾'//,
//swfOutsideUrl:"http://you.video.sina.com.cn/api/sinawebApi/outplayrefer.php/video_id=250572952/s.swf"
},
{
video_id: '250572796',
source:'',
pid:'6',
url: 'http://video.sina.com.cn/view/250572796.html',
title:'丁俊晖首进世锦赛决赛'//,
//swfOutsideUrl:"http://you.video.sina.com.cn/api/sinawebApi/outplayrefer.php/video_id=250572796/s.swf"
},
]
(function($){
var Play = {
init: function(flashConfig, videoList){
this.flashConfig = flashConfig;
this.videoList = videoList;
this.playVideo = playVideo;
this.prev = this.current = 0;
this.length = this.videoList.length;
this.contNode = $("#J_Video_Autoplay");
this.titleNode = $("#J_Video_Source");
this.playListNode = $("#J_Play_List .J_Play_Item");
if(videoList.length!==1){
//显示小图
CommonTool.byId('J_Play_List_Wrap').style.display='';
}
if(videoList.length<5){
CommonTool.byId('J_Player_Prev').style.display='none';
CommonTool.byId('J_Player_Next').style.display='none';
}
this.initPlayer();
this.bind();
},
bind: function(){
var _this = this;
$("#J_Play_List").on("click", ".J_Play_Item a", function(e){
e.preventDefault();
_this.playCurrent($(this));
});
},
initPlayer: function(){
var _this = this;
this.player = this.playVideo(this.flashConfig);
this.player.init(this.videoList[this.prev]);
this.player.on("playCompleted", function(){
_this.playNext();
});
this.playListNode.eq(0).addClass("selected");
this.titleInfo = this.videoList[0].title;
if(this.videoList[0].url!=""){
this.titleInfo = ''+this.videoList[0].title+'';
}
if(this.videoList[0].source!==''){
this.titleInfo += '
(来源:'+this.videoList[0].source+')';
}
this.titleNode.html(this.titleInfo);
},
playCurrent: function($this){
this.prev = this.current;
this.current = $this.parents(".J_Play_Item").index();
this.play(this.prev, this.current);
},
playNext: function(){
if(!this.contNode[0].checked){
return;
}
this.prev = this.current;
if(this.current >= this.length - 1){
return;
}
this.current++;
this.play(this.prev, this.current);
},
play: function(prev, current){
this.player.playVideo(this.videoList[current]);
this.titleInfo = this.videoList[current].title;
if(this.videoList[current].url!=""){
this.titleInfo = ''+this.videoList[current].title+'';
}
if(this.videoList[current].source!=""){
this.titleInfo += '
(来源:'+this.videoList[current].source+')';
}
this.titleNode.html(this.titleInfo);
this.playListNode.eq(prev).removeClass("selected");
this.playListNode.eq(current).addClass("selected");
}
}
Play.init(flashConfig, videoList);
})(jQuery);
丁俊晖
新体讯 当地时间4月30日,2016年斯诺克世锦赛在谢菲尔德继续进行。在半决赛丁俊晖与麦克马努斯的第四阶段比赛中,丁俊晖发挥出色,最终以17比11战胜麦克马努斯,第一次晋级此项赛事决赛。赛后,丁俊晖接受了记者的群访:
记者:现在你晋级决赛了,你现在的心情如何?
丁俊晖:我的心情还可以,现在我人比较安静,因为这几天打比赛打得有点麻木,一直在循环中,现在整个人也没有太兴奋。
记者:这场半决赛,你有7次单杆过百,你对这一点有何看法?
丁俊晖:其实我并不在意太多的过百,在我以9比3领先后他追到7比9,我觉得压力很大的。因为我第二阶段打了3比5,所以我想在第三阶段尽量多拿几局,最后以14比10领先。过百并不是我最在意的,在整个过程中会有很多的状况出现,包括有时候遇到好的机会没有赢,或者是对手打得太好了、连续赢几局,这都是正常的。在场上细微的压力变化大家可能看不出来,但我还是有的。
记者:你觉得你现在的手感如何?
丁俊晖:我打球没有想太多,尽可能简化打每颗球,特里一直对我说‘你想到的第一个想法永远是最好的,所以你想到什么直接去做就好了’,很多时候我都是这样的,包括有时候进攻的时候我不会想太多,就是想把球打进袋中,就是想进攻而已,没有太多的想法,这样可能会打得更好一些吧!
记者:你觉得这场半决赛是你给对手压力还是你感受到了半决赛给你带来的压力?
丁俊晖:其实第一阶段他打得有点压力、有点紧张,有些球差得还是有点多。在3比9之后,他打得完全放开了,把比分追上来以后他一直打得不错。不过还好,我把握住了机会,能够拿下剩下的几局球。
记者:你很喜欢现在参赛的感觉吧?
丁俊晖:这还是第二次我打到比赛这么靠后的阶段吧,别的比赛很快就结束了,这回我是从资格赛打了三轮打到现在,我感觉这次比以往的世锦赛都要漫长得多,我会有一些疲惫、麻木,幸亏还有特里在边上不停地告诉我要保持兴奋,不要让自己过于麻木。
记者:你很期待捧起这个冠军奖杯吗?
丁俊晖:非常期待吧,这是最好的一次机会,其实进决赛,两个人机会是平等的,我希望胜利的是我自己。
记者:决赛你更愿意对阵谁?傅家俊还是塞尔比?
丁俊晖:我希望对阵傅家俊吧,很少有机会两个中国人在世锦赛决赛中碰到,我并不是偏向于哪个人打得好、哪个人打得不好,这是我的个人意愿。
记者:你的教练特里对你具体有哪些帮助?
丁俊晖:在之前的一个半赛季,我输得有点多。特里从这个赛季的赛季初一直在和我联系,一开始我和他聊的时候,我是一个很缺乏自信的人,毕竟这两年我没有打出让自己满意的球。在比赛方面,他更多地是鼓励我,让我充满自信地去打比赛,而不是要我的球风和战术做出改变,他让我重新自信满满去打比赛。
(董正翔)