play
丁俊晖世锦赛决赛回顾
play
丁俊晖历届世锦赛回顾
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: '250574700',
source:'',
pid:'6',
url: 'http://video.sina.com.cn/view/250574700.html',
title:'丁俊晖世锦赛决赛回顾'//,
//swfOutsideUrl:"http://you.video.sina.com.cn/api/sinawebApi/outplayrefer.php/video_id=250574700/s.swf"
},
{
video_id: '250574766',
source:'',
pid:'6',
url: 'http://video.sina.com.cn/view/250574766.html',
title:'丁俊晖历届世锦赛回顾'//,
//swfOutsideUrl:"http://you.video.sina.com.cn/api/sinawebApi/outplayrefer.php/video_id=250574766/s.swf"
},
{
video_id: '250574919',
source:'',
pid:'6',
url: 'http://video.sina.com.cn/view/250574919.html',
title:'丁俊晖外教评小丁表现'//,
//swfOutsideUrl:"http://you.video.sina.com.cn/api/sinawebApi/outplayrefer.php/video_id=250574919/s.swf"
},
{
video_id: '250574696',
source:'',
pid:'6',
url: 'http://video.sina.com.cn/view/250574696.html',
title:'丁俊晖无缘世锦赛冠军'//,
//swfOutsideUrl:"http://you.video.sina.com.cn/api/sinawebApi/outplayrefer.php/video_id=250574696/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);
丁俊晖
新华社北京5月4日体育专电 体育时评:体育明星的榜样作用
新华社记者肖亚卓 汪涌
日前进行的斯诺克世锦赛决赛中,丁俊晖以14:18不敌塞尔比收获亚军,虽然没有最终夺冠,但这已创造他个人在世锦赛上的最好成绩。经历了一阵低谷后,小晖迎来了强势反弹。
从2005年中国公开赛夺冠起,丁俊晖的成长故事已经被各路媒体报道过千百遍。作为一名体制外的运动员,他的成功对于斯诺克运动在中国的发展无疑起到了巨大的推动作用:一方面有越来越多的斯诺克顶级赛事落户中国,最多的时候一个赛季有5站大型排名赛在中国举办;另一方面也有更多的中国年轻选手登上斯诺克职业比赛的舞台。
这就是当今社会一位体育明星榜样作用最实实在在的表现。
今天,随着生活水平的提高,人们在关心国家命运前途的同时,也开始更多关注个人的生活与发展,体育明星的榜样作用有了更广泛的空间。
首先,体育是最好的励志教育。许多优秀运动员的成长过程往往伴随着无数次挫折与失败,正是在一次次跌倒后又一次次站起来,才让最后的成功显得更加弥足珍贵。即便最后没有取得理想的成绩,但是奋斗的过程也依然是一笔宝贵的财富。
其次,体育运动中所包含的挑战自我、超越极限的精神对每一个人来说都有激励作用。现在的体育明星已经不再局限于拿金牌的运动员,于是我们看到郭川和陈盆滨这样的人物成了新时代的体育明星。以这样的人物为榜样,能激发人们不断追求卓越、挑战自我。
再次,当今社会人们对于体育的认识已经超出了竞技层面的争金夺银,进一步落实到了每一个人的身体健康上。对于体育,许多人已经不再满足于当观众,而是要当一名参与者。体育明星的存在恰恰能对这股潮流起到巨大的推动作用。而许多体育明星也的确在为大众参与体育运动贡献着自己的力量。前奥运冠军王丽萍退役之后开办了跑步俱乐部,希望带动更多的人参与到跑步中来,并且取得了非常好的效果。
最后,正如从丁俊晖的例子中我们看到的,体育明星对其所在项目的发展有巨大的推动作用。林丹就曾表示,他现在也在考虑如何通过运用自己的影响力,为羽毛球这项运动的发展做出贡献。任何体育项目都离不开榜样的力量,一个优秀的体育明星就是其所在项目最好的代言人。
需要指出的是,体育明星也是普通人,他们有优点也会有缺点。从明星自身的角度来说,他们应当注意自己的言行,尽量发挥正能量,这是一名公众人物所必须承担的社会责任。而作为普通大众,也需要接受体育明星并非完人这个事实,对其缺点也要理性看待。这个社会需要的是“理性粉”。(完)