• logo
  • 斯诺克新闻 斯诺克新闻

    丁俊晖恐怖火力破奥沙利文纪录 史诗般经典之作

    分享到:

    2016年5月1日

    视频加载中,请稍候...
    /*自动播放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年世界斯诺克锦标赛结束了上半区的半决赛,前三个阶段手握4局优势的丁俊晖最终没有让胜利溜走,17-11击败麦克马努斯,职业生涯首次打入世锦赛决赛。同时丁俊晖也成为了中国乃至亚洲斯诺克历史上,首位打进世锦赛决赛的球手,距离三大赛大满贯荣誉只差一步。

      5年前克鲁斯堡,丁俊晖与特鲁姆普上演了至今被很多中国球迷津津乐道的半决赛,整场32局比赛双方贡献7次破百,16次单杆50+。5年后丁俊晖与老将麦克马努斯的半决赛,虽然过程没有5年前丁特大战那么刺激,但这是一场足以载入史册的世锦赛经典半决赛,他的经典在于这场半决赛创造了多项纪录。回顾全场28局的比赛,双方贡献10次破百,打破了斯诺克单场比赛的8次破百杆数,回首过去40年在克鲁斯堡举行的世锦赛,有4场比赛完成8次破百,1999年世锦赛半决赛亨德利对垒奥沙利文,2002年世锦赛决赛亨德利对垒艾伯顿,2015年世锦赛1/4决赛霍金斯与罗伯逊以及2015年世锦赛半决赛墨菲和霍金斯。

      10次破百之中丁俊晖完成了7次破百,展现出了恐怖的进攻火力,打破了塞尔比,奥沙利文的世锦赛单场6次破百纪录。此前塞尔比在2011年世锦赛第2轮对垒亨德利比赛中完成6次破百,而奥沙利文2013年世锦赛决赛对垒霍金斯也打出了6次破百。同时丁俊晖7次破百也追平了亨德利1994年英锦赛决赛创下的单场破百纪录。

      一场比赛能出现如此多的单杆破百,无疑让现场的球迷非常过瘾,丁俊晖7次破百证明他的能力,但45岁老将的麦克马努斯同样值得钦佩,在丁俊晖取得7-2大比分领先时,很多球迷都认为丁俊晖很可能只用三个阶段就结束比赛时,麦克马努斯开始了强大的反扑,之后7局球麦克马努斯打出了三次破百,一下子把比分追到7-9。而在第三阶段,麦克马努斯顽强一度将比分追到10-12,只是从23局开始到最后结束,麦克马努斯终于显露疲态,进攻失误连连,丁俊晖最终赢得比赛。

      任何一场值得经典回味的斯诺克赛事,需要两个球手在球场上都有出色的发挥,如果只是一方发挥抢眼,另一方发挥糟糕,这种个人擂台的专演往往不太容易年被人记住,多少有种一朵鲜花插在牛粪上的感觉,正所谓红花还需绿叶衬,红花之所以醒目,是因为它在大片绿叶的簇拥下。因而我们不能忘记45岁老将麦克马努斯在这场比赛中所做的贡献,苏格兰角度大师不仅打出了精彩的进攻好局,他在输掉比赛后握手情景展现了他苏格兰老派绅士风格。相信在未来当我们需要回顾丁俊晖克鲁斯堡经典战役时,这场半决赛肯定会被很多球迷所提及。当然这场经典之战也有美中不足之处,丁俊晖在比赛第20局连续收掉15颗红球和14颗黑球后,处理最后一个黑球失误,错失147满分,而之前克鲁斯堡一共诞生10个满分杆。

      丁俊晖世锦赛夺冠之路还差最后一场35局18胜的比赛,不管决赛对手是傅家俊还是塞尔比,我们都希望丁俊晖能够延续半决赛良好的手感,为球迷奉献一场更加精彩的决赛。(韩悦天)

    -->来源:新体阅读:456

    更多新闻:

    下一条:决赛!丁俊晖终于来了!克鲁斯堡39年翻开新篇章
    *本文来源于网络,如涉及版权问题,请联系Email:7399901@qq.com
     您好:发表评论
     
    返回顶部

    官方QQ群:60775081