play
世锦赛丁俊晖进4强
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: '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"
},
{
video_id: '250568181',
source:'',
pid:'6',
url: 'http://video.sina.com.cn/view/250568181.html',
title:'丁俊晖马克都“断电”'//,
//swfOutsideUrl:"http://you.video.sina.com.cn/api/sinawebApi/outplayrefer.php/video_id=250568181/s.swf"
},
{
video_id: '250566249',
source:'',
pid:'6',
url: 'http://video.sina.com.cn/view/250566249.html',
title:'世锦赛丁俊晖复仇小特'//,
//swfOutsideUrl:"http://you.video.sina.com.cn/api/sinawebApi/outplayrefer.php/video_id=250566249/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);
丁俊晖
新体讯 今天凌晨,在斯诺克世锦赛的四分之一决赛中,丁俊晖发挥出色,他以13-3大胜马克-威廉姆斯,提前一个阶段就解决了战斗晋级4强。这是丁俊晖时隔5年再次打入世锦赛半决赛,他成了第一个两次打进世锦赛四强的中国选手。
对于斯诺克选手来说,世界锦标赛与其他赛事相比完全是两个档次,无论从比赛的积分、奖金,还是参赛阵容的含金量、荣誉,等等各方面来看,无不如此。有些选手在其他的排名赛上打得很好,但只要无法在世锦赛上证明自己,那么你就永远不会被视为一位顶尖选手。
丁俊晖从出道以来就被视为神童,他在18岁的时候就获得了自己的第一个排名赛冠军,但是在世锦赛的赛场上他明显更晚“上道”。2007年已经是排名赛三冠王的丁俊晖才首次打进世锦赛正赛,之前一年的世锦赛,半年前刚刚在仅次于世锦赛的英锦赛上夺冠的丁俊晖,依然倒在了资格赛上。
而2007年世锦赛带给丁俊晖的,也是苦涩的回忆,首轮他就遇到了奥沙利文,结果2-10惨败。之后两年虽然丁俊晖都通过了首轮,但却连续输给早已过了巅峰期的亨德利,2008年更是只得到7局,两个人18岁的年龄差距,并没有给年轻的丁俊晖带来任何优势。
2010年世锦赛丁俊晖终于走出了长达两年半的低迷,前一年年底他再次在英锦赛登顶,成为当时获得排名赛冠军最多的80后球手,此外他还拿到中国公开赛亚军,单赛季积分世界第一。此时丁俊晖的球风也发生了不小的改变,从初出茅庐时的依靠准多,变得更加均衡,在母球的控制,防守等方面有了长足的进步。可即便如此,2010年世锦赛他还是在第二轮10-13倒在墨菲面前,而墨菲那个赛季在第一站排名赛上海大师赛闯进4强之后,将近一年的时间里在排名赛中只有1胜。如此鲜明的反差继续提醒我们,世锦赛与其他比赛,有本质的区别。至此,丁俊晖前四次世锦赛之旅,最多只走到第二轮。
不过2011年,第五次参加世锦赛的丁俊晖,终于迎来了爆发,第二轮在面对宾汉姆的时候,丁俊晖9-12落后情况下连扳4局,13-12晋级8强。随后他一鼓作气杀入半决赛,最后15-17惜败给特鲁姆普。早早就被誉为神童的中国丁,终于在斯诺克最大,最重要的舞台上证明了自己。
为什么说晋级世锦赛4强的意义如此重大?在世锦赛的历史上,此前只有一位中国选手打进过4强,那是2006年的傅家俊,那一次他半决赛16-17负于艾伯顿。“斯诺克的未来在中国”,“斯诺克未来将是中国人的领地”,“中国获得世锦赛冠军只是时间问题”,这样的说法近些年各位应该听到过不知多少次了,但事实是,现代斯诺克的历史上,此前中国人只有两人次进过世锦赛4强,此外还有梁文博进过一次8强,再之外的选手顶多取得一胜进到第二轮,仅此而已。
从赛制上看,世锦赛从半决赛开始采用33局17胜,比赛延长到4个阶段,和第一轮的两阶段19局10胜,第二第三轮的三阶段25局13胜,再次提升了一个难度,对选手的精力体力,意志力,注意力的集中度等方面要求,也再次提升了一个级别。想一想一般的排名赛只有决赛才是19局10胜,前三轮仅仅是9局5胜,其中的差别简直是云泥之别。为什么一般的排名赛总会时不常就跳出来一匹黑马,杀进决赛,乃至夺冠,而这个人你可能从未听说过,但到了世锦赛你就发现出现在半决赛中的选手总是那些熟悉的名字。
对于已经进过一次世锦赛四强的丁俊晖来说,这一次他一定不会满足于体验体验33局17胜是什么滋味这么简单。现在说直指冠军还为时过早,半决赛可能的对手希金斯,决赛无论是塞尔比还是傅家俊,都难对付得很,所以我们还是先为小丁攒一攒“人品”,继续为他加油吧,看看最终的结果是什么。
(Dream)