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

    破荒!梁文博终夺大型排名赛首冠 他成中国第三人

    分享到:

    2016年10月17日

    视频加载中,请稍候...
    /*自动播放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: '250801072', source:'', pid:'6', url: 'http://video.sina.com.cn/view/250801072.html', title:'梁文博夺冠跳起嘶吼庆祝'//, //swfOutsideUrl:"http://you.video.sina.com.cn/api/sinawebApi/outplayrefer.php/video_id=250801072/s.swf" }, { video_id: '250756584', source:'', pid:'6', url: 'http://video.sina.com.cn/view/250756584.html', title:'上海赛:奥沙利文5-4逆转梁文博1'//, //swfOutsideUrl:"http://you.video.sina.com.cn/api/sinawebApi/outplayrefer.php/video_id=250756584/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);

    梁文博做到了!梁文博做到了!

      新体讯  在梁文博的荣誉本上,曾经有两次杀进过大型排名赛决赛,可是,收获的却都是亚军。事不过三,在英格兰公开赛决赛面对特鲁姆普,梁文博终于用火热的手感夺得了自己个人大型排名赛的首冠!他也成为了自丁俊晖和傅家俊之后,中国第三位大型排名赛的冠军得主。

      梁文博05年转为职业球手,08年世锦赛时,梁文博横空出世杀进世锦赛八强,并在之后的巴林赛资格赛中轰出了147,成为了中国选手自丁俊晖外的第一人。之后,梁文博的表现稳中有升,并在10-11赛季杀进了世界排名TOP16。不过,之后随着本身状态的下滑和世界台联在排名规则上的改变,梁文博一直没能有太过耀眼的表现。

      在大型排名赛上,他曾经两度杀进决赛,却都铩羽而归。09年的上海大师赛决赛,梁文博5-10不敌奥沙利文;上赛季英锦赛决赛,梁文博5-10不敌罗伯逊;事实上,十一年的职业生涯,梁文博仅仅获得过一站小型排名赛的冠军——13年的郑州公开赛。

      而本赛季,梁文博的状态其实并不算好。世界公开赛止步第二轮,上海大师赛首轮不敌奥沙利文,欧洲大师赛也是次轮就被淘汰。对于梁文博来说,仿佛获得大型排名赛的冠军是那么遥遥无期,可是梁文博却在英格兰公开赛上迎来了爆发,一路淘汰多特、墨菲和宾汉姆等强手会师特鲁姆普,并在决赛中凭借精准远台进攻拿下比赛,也取得了自己职业生涯首个大型排名赛的冠军。

      夺冠后,梁文博的世界排名升至第12位,超越傅家俊,仅次于丁俊晖排在中国选手的第二位,同时,他也拿到了下个月冠中冠的参赛资格。再连续两次大型排名赛决赛失利后,第三次站在决赛舞台的梁文博终于证明了自己。事不过三,对于梁文博来说,首个大型排名赛冠军只是起点,后面他还有更多的目标需要去一一征服。

      (韦雨木)

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

    更多新闻:

    下一条:英格兰赛梁文博9-6特鲁姆普 生涯大型排名赛首冠
    *本文来源于网络,如涉及版权问题,请联系Email:7399901@qq.com
     您好:发表评论
     
    返回顶部

    官方QQ群:60775081