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

    上海大师赛丁俊晖夺冠路 首轮涉险过关终折桂

    分享到:

    2016年9月25日

    视频加载中,请稍候...
    /*自动播放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: '250761219', source:'', pid:'6', url: 'http://video.sina.com.cn/view/250761219.html', title:'丁俊晖10-6复仇塞尔比'//, //swfOutsideUrl:"http://you.video.sina.com.cn/api/sinawebApi/outplayrefer.php/video_id=250761219/s.swf" }, { video_id: '250761194', source:'', pid:'6', url: 'http://video.sina.com.cn/view/250761194.html', title:'上海大师赛丁俊晖领奖'//, //swfOutsideUrl:"http://you.video.sina.com.cn/api/sinawebApi/outplayrefer.php/video_id=250761194/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);

    丁俊晖丁俊晖

      新体讯  北京时间9月25日消息,2016年斯诺克上海大师赛结束决赛争夺,丁俊晖以大比分10-6力克塞尔比,继2013年后再度夺得该项赛事冠军。同时,这也是丁俊晖职业生涯获得的第12个排名赛冠军,让我们一同回顾下小丁的夺冠历程!

      首轮比赛,丁俊晖进入状态较慢,开局一度以1-3落后。不过随后他及时调整,将局分扳成3平。双方战成4平后,丁俊晖抓住对手失误,以72-45拿下决胜局,力克唐纳德森,惊险晋级次轮。

      第二轮比赛,丁俊晖对阵马克-艾伦。此前两人交手14次,丁俊晖9胜1平4负占据绝对优势,不过他们最近一次交手则要追溯到三年前欧巡赛德国站决赛,那时艾伦4-1击败丁俊晖赢得冠军。

      比赛开始,丁俊晖连得37分后推简单黑球失误,马克-艾伦抓住机会率先拿下首局。不过随后丁俊晖没有再犯错误,连扳三局将比分反超。丁俊晖在4-2领先时,抓住艾伦粗糙的防守漏洞,一鼓作气,顺利拿下第7局,大比分5-2力克对手,成功晋级8强。

      1/4决赛,丁俊晖延续良好状态,首局一上来便打了霍尔特一个102-1,顺利赢得开门红。双方战成3平后,丁俊晖抓住对手一时冲动,顺利拿下第7局,大比分4-3领先。第八局中霍尔特又出现致命失误,丁俊晖抓住机会以67-34将整场比分锁定在5-3,顺利4强。

      半决赛中,丁俊晖对阵马奎尔。双方前六局战成3平,关键的第7局,丁俊晖60-5超分取胜,4-3取得领先。第八局陷入僵持,马奎尔手感越来越差,机会就在手上却总也抓不住,丁俊晖反复上手后80-23拿下关键局,5-3领先拿到赛点。第九局马奎尔先上手得到20分,然而已经冷却的手感和无法集中的注意力使得他再次出现失误,尽管丁俊晖上手后进攻黑球失误也没能连续得分,但马奎尔面对突如其来的机会没能把我住,丁俊晖再次上手69-20超分取胜将比分锁定在了6-3,时隔三年成功杀入决赛。

      决赛中,丁俊晖迎来在世锦赛决赛中的老对手塞尔比。第一阶段,小丁在开局1-3落后的不利局面下连扳5局,6-3领先进入第二阶段。第二阶段,小丁再次出现慢热毛病,被对手追至6平。不过随后,丁俊晖没有再给对手机会,连下4局,10-6时隔三年再次捧起上海大师赛冠军奖杯。

      (空山鸟语)

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

    更多新闻:

    下一条:上海赛丁俊晖10-6复仇塞尔比 时隔三年再夺冠军
    *本文来源于网络,如涉及版权问题,请联系Email:7399901@qq.com
     您好:发表评论
     
    返回顶部

    官方QQ群:60775081