play
世锦赛傅家俊进4强
play
世锦赛丁俊晖进4强
向前
向后
/*自动播放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: '250569226',
source:'',
pid:'6',
url: 'http://video.sina.com.cn/view/250569226.html',
title:'世锦赛傅家俊进4强'//,
//swfOutsideUrl:"http://you.video.sina.com.cn/api/sinawebApi/outplayrefer.php/video_id=250569226/s.swf"
},
{
video_id: '250567747',
source:'',
pid:'6',
url: 'http://video.sina.com.cn/view/250567747.html',
title:'世锦赛丁俊晖进4强'//,
//swfOutsideUrl:"http://you.video.sina.com.cn/api/sinawebApi/outplayrefer.php/video_id=250567747/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);
丁俊晖
新体讯 2016年世界斯诺克锦标赛产生了四强,丁俊晖晋级之后一天,傅家俊也13-11有惊无险来到半决赛。两位中国选手同时进四强,这在开赛前简直不敢想象。现在,可能会发生一件更疯狂的事情了,决赛上演中国德比?!
克鲁斯堡剧院39年的世锦赛历史,首次在4强名单中出现两名中国球手。回顾过去,中国军团在世锦赛最好成绩也是4强,2006年傅家俊连克麦克马努斯、马奎尔、达赫迪挺进半决赛,2011年丁俊晖连克佩特曼、宾汉姆和塞尔比挺进半决赛。所不同这一次则是两位中国球手同时打入世锦赛4强,不管他们最终是否能够打入决赛,中国军团在本届世锦赛上已经创造了历史。
由于丁俊晖和傅家俊各自镇守上下半区,球迷自然渴望两人能够更进一步,会师决赛。而在开赛前,如果有人这么想,肯定会被认为是痴人说梦。要知道,斯诺克之于英国基本等同于乒乓球之于中国,甚至程度更深 ,克鲁斯堡世锦赛39年历史,只有加拿大人索本、爱尔兰人达赫迪、澳大利亚人罗伯逊曾从英伦三岛球员中抢到过冠军奖杯。若丁俊晖和傅家俊会师决赛,其中的历史意义不言而喻。
从对阵情况来看,丁俊晖将迎战老将麦克马努斯,后者本次世锦赛有着极其惊人的发挥,绰号角度大师的麦克马努斯连克同胞马奎尔,希金斯以及卡特,时隔23年后 第三次打入世锦赛半决赛。但无论是哪个方面的表现,丁俊晖都比对手强,过去4年三次在大型排名赛上相遇丁俊晖全部取胜充分表明了这点。
此外丁俊晖还有一个巨大的优势——体能储备,撇开两人16岁年龄差距不谈,丁俊晖因为1/4决赛结束得早,比对手多休息了一天,而麦克马努斯则与希金斯经历了24局苦战后才惊险过关,精力损耗远大于丁俊晖,休息时间也比丁俊晖短。在整体进攻和精力两大优势下,丁俊晖赢下麦克马努斯几乎可以算是十拿九稳,英国博彩公 司开出的赔率也恰如其分反映了这点,很多博彩公司甚 至认为麦克马努斯赢下局数只有丁俊晖的一半。
相比之下,傅家俊前景远没有丁俊晖那么光明,他 将迎战世界排名第一塞尔比,两人过去交手15次,傅家 俊4胜11负占据绝对劣势。虽然塞尔比在前三轮所体现的进攻水准不如傅家俊,但塞尔比拥有一颗强大的心脏以及强大的控制局面能力,莱切斯特小丑具备在自己手感较差情况下仍能赢下比赛的能力,而傅家俊拥有不错的防守功力,但他在与顶尖高手较量中,这一环并没有任何优势。此外在体能储备,傅家俊几乎没有任何优势而言,毕竟塞尔比比傅家俊年轻5岁,因而在实力和精力上 ,傅家俊没有优势,要想击败世界第一,傅家俊需要有更好的发挥。
综上所述,世锦赛能否出现中国德比关键在于傅家俊的表现,而在过去世锦赛将近90年历史上(世锦赛始于1927年,如今常用1977年落户克鲁斯堡后形容新时代世锦赛),非英伦三岛球手会师决赛只出现过1次—— 1952年林祖母和麦克科纳奇在世锦赛上演澳洲德比。
如果傅家俊和丁俊晖都能击败对手胜利会师,这将是中国乃至亚洲斯诺克最为荣耀的时刻,同时将打破英伦三岛64年至少有1人打入世锦赛决赛的历史,过去10年,丁俊晖与傅家俊在世界斯诺克职业赛事中一共上演14次中国德比,其中在决赛会师只有一次,2011年伦敦大师赛决赛,那场决赛对于中国斯诺克而言具有里程碑式意义 ,希望这一次丁俊晖和傅家俊共同翻开新的篇章。
(韩悦天)