.a-p-s-txt{color:#FFF!important;}
.selected .a-p-s-img {background-image: url("http://n.sinaimg.cn/default/7772e5f8/20151202/article_selected_a_dc.png")!important;}
视频加载中,请稍候...
自动播放
play
《欧洲杯西游记》第3集
向前
向后
/*自动播放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: '250632526',
source:'',
pid:'6',
url: 'http://video.sina.com.cn/view/250632526.html',
title:'《欧洲杯西游记》第3集'//,
//swfOutsideUrl:"http://you.video.sina.com.cn/api/sinawebApi/outplayrefer.php/video_id=250632526/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);
勒夫因一个动作成为焦点
新浪体育讯 继吃鼻屎后,勒夫又被捕捉到在场边掏裆和抠屁股,对于这尴尬的一幕勒夫道了歉。

御史不在仕途,仍在体制。

澳门威尼斯人百家乐 国务院总理李克强6月15日主持召开国务院常务会议,决定宣布失效一批与现行法律法规不一致、不利于办事创业、不适应经济社会发展需要的政策性文件;部署清理规范工程建设领域保证金,降低企业成本、营造公平竞争环境。
英大证券首席经济学家李大霄15日早间在微博表示,A股第三次冲关MSCI失败,这次冲关A股进行了大量的改善,离MSCI又近了一步,之后随着障碍渐渐清除,成功只是时间问题。这次冲关市场预期并不高,冲关失败并不会给A股带来趋势性的影响。
以南京市为例,平均每天接报警情多达1万起,但其中不少是无效报警,这样的例子不胜枚举:
Copyright © 1996-2016 SINA Corporation, All Rights Reserved
在湖北省人民政府官网,对于曹广晶工作分工的介绍是:负责环保、住房和城乡建设、金融、证券、保险等方面的工作。分管省环保厅、省住建厅、省政府金融办;联系人行武汉分行、湖北银监局、湖北证监局、湖北保监局等在鄂及省内银行、证券、保险机构。省长交办的其他工作。澳门星彩大赢家
点击下载【新浪体育客户端】,赛事视频直播尽在掌握
.content_interest{position:relative;bottom:-65px;margin-top:-65px;}
.content_interest_cont{margin: 0 13px 2px; padding-left:8px;}
.content_interest h2 {color: #010101;font-family: "microsoft yahei";height: 30px;font-size: 16px;font-weight: bold;line-height: 30px;position: relative;}
.content_source{position: absolute;right: 10px;top: 0;font-size: 14px;font-weight: normal;line-height: 30px;color: #444;}
.ci-blk{ padding:5px 0 10px;}
.ci-blk .ci-pic{ float:left; width:97px; overflow:hidden; padding-top: 6px;}
.ci-blk .ci-pic img{ display:block; margin:0 auto}
.ci-blk .ci-txt{ float:left; width:410px; overflow:hidden} /* 460px */
.ci-blk .ci-pic span{ display:block;font:14px/22px "微软雅黑";color: #094683; padding-top:7px; text-align:center}
.ci-blk .ci-pic:link, .ci-blk .ci-pic:visited{color: #094683;}
.ci-blk .ci-pic:hover, .ci-blk .ci-pic:hover span{color:#c00}
.ci-blk .ci-txt li{font:14px/24px "微软雅黑"}
.ci-blk .ci-txt a:link, .ci-blk .ci-txt a:visited{color: #444;}
.ci-blk .ci-txt a:hover{color:#c00}
.ci-blk .ci-more{ text-align:right; margin-top:-24px;font:14px/24px "微软雅黑"}
.ci-blk .ci-more a:link, .ci-blk .ci-more a:visited{color: #094683;}
.ci-blk .ci-more a:hover{color:#c00}
.content_label_list{margin: 10px 20px 27px 20px !important;}
.content_interest_cont{padding-top:10px;}
.content_shareto{margin-top:-16px !important;}
jsLoader(ARTICLE_JSS.jq, function () {
$(function () {
var container = $('.content_interest');
var api = 'http://interest.mix.sina.com.cn/api/topic_v2/news_topic';
var pageUrl = 'http://sports.sina.com.cn/basketball/nba/2016-06-16/doc-ifxtfrrc3681378.shtml';
pageUrl = pageUrl.split('?')[0];
function clipString(str, a, b){
var s = str.replace(/([^\x00-\xff])/g, "\x00$1");
return (s.length 2) {
topicLength = 2;
}
// write data
var html = '相关主题来自一点资讯';
for (var i=0 ; i/gi,"") })
(function(){
var user = sinaSSOController.get51UCCookie();
if(user){
document.write('');
};
})();
//点击按钮分享两次正文,颁发勋章
(function(){
//var isNBA = location.href.indexOf('sports.sina.com.cn/nba/') !=-1?true:false;
//if(!isNBA){return;}
var API = 'http://platform.sina.com.cn/sports_other/medalSports?app_key=3633771828&format=json&ch=sports';
var getData = function(){
$.ajax({
type: 'GET',
url: API,
dataType: 'jsonp'
});
}
jsLoader(ARTICLE_JSS.jq,function(){
var $ = jQuery;
$('.bshare-sinaminiblog').on('click',function(){
getData();
});
jsLoader(ARTICLE_JSS.sab,function(){
var sideBtn = $('#weibo_btn a');
if(sideBtn.length){
sideBtn.on('click',function(){
getData();
});
}else{
setTimeout(arguments.callee, 300);
}
});
});
})();
.fl {
float: left;
}
.fr {
float: right;
}
.content_print a.sc_link {
background: url(http://www.sinaimg.cn/dy/deco/2014/0312/sc_img/zw_sc_star.png) no-repeat;
padding: 1px 0 1px 17px;
_background-position: 0px -1px;
}
.sc_success_alert {
display: none;
padding: 30px 30px 18px;
width: 451px;
z-index: 20000;
top: 50%;
left: 50%;
margin-top: -168px;
margin-left: -250px;
position: fixed;
_position: absolute;
background: #fff;
border-radius: 3px;
font-family: "Microsoft YaHei", "微软雅黑", "SimSun", "宋体";
}
.sc_success_alert .top {
margin-bottom: 25px;
height: 90px;
}
.sc_success_alert .bg {
width: 95px;
height: 80px;
border-right: 1px solid #cde5b8;
margin-top: 7px;
background: url(http://www.sinaimg.cn/dy/deco/2014/0312/sc_img/sc_suc.png) no-repeat;
}
.sc_success_alert .txt {
width: 335px;
padding-left: 20px;
}
.sc_success_alert .fir {
color: #61c520;
font-size: 28px;
height: 43px;
line-height: 42px;
}
.sc_success_alert .sec {
font-size: 14px;
line-height: 23px;
color: #717171;
}
.sc_success_alert .sec a {
color: #ff8c11;
}
.sc_success_alert .sec a:hover {
text-decoration: underline;
}
.sc_success_alert .sure {
width: 147px;
height: 41px;
font-size: 18px;
text-align: center;
line-height: 40px;
color: #fff;
background: #ff8400;
margin-top: 15px;
border-radius: 3px;
cursor: pointer;
}
.sc_success_alert .close {
position: absolute;
background: url(http://www.sinaimg.cn/dy/deco/2014/0312/sc_img/sc_suc_close.png) no-repeat;
right: 15px;
top: 15px;
width: 25px;
height: 25px;
cursor: pointer;
}
.sc_success_tit {
position: absolute;
z-index: 99999;
padding: 0 15px;
border: 1px solid #ccc;
background: #fff;
display: none;
_width: 150px;
}
.sc_success_tit .sp {
color: #666;
height: 30px;
line-height: 30px;
}
.sc_success_tit a.a {
color: #b60c0c;
padding-left: 8px;
height: 30px;
line-height: 30px;
}
.sc_success_tit a.a:hover {
text-decoration: underline;
}
.sc_success_tit .sp2 {
width: 11px;
height: 6px;
position: absolute;
top: -6px;
left: 50%;
margin-left: -5px;
background: url(http://www.sinaimg.cn/dy/deco/2014/0312/sc_img/sc_tit_top.png) no-repeat;
}
a.sc_txt_bc:hover {
text-decoration: none;
cursor: default;
color: #666;
}
.weibo_share_w {
position: relative;
bottom: -68px;
left: -115px;
float: none !important;
_zoom: 1;
}
.J_Comment_Count_Txt {
position: relative;
bottom: -58px;
right: -6px;
}
#media_comment {
position: static;
}
.content_print {
height: 40px;
line-height: 40px;
margin: -10px 30px -10px 40px;
}
#J_Post_Box_Count .J_Comment_Count_Txt {
position: static;
}
意见反馈 值班电话:010-62675595收藏 | 保存 | 打印 | 关闭
已收藏!
业内人士指出,本周一沪深股市的调整部分消化了未能纳入MSCI的冲击,在靴子落地后,资金反其道而行,再度大举介入,“利空出尽是利好”,这催生了昨日的“任性”上涨。但单日大涨并不能确立趋势性反弹就此开启。
启动托市一星期了,未收一粒新麦,市场收购价几乎每天跌2分,农民售粮排成长龙……正值小麦上市季节,记者深入川鄂皖等小麦产区采访发现,收获季遇到强降雨,供应足需求还不旺,今年新小麦衰运连连。部分产区的新麦品质较差,市场行情持续低迷,开秤价格节节下跌,农民遭遇卖粮“寒冬”。
您可通过新浪首页(www.sina.com.cn)顶部 “我的收藏”, 查看所有收藏过的文章。
安硕信息牛皮被捅破 董事长联手分析师吹出第一高价股
新浪公司 版权所有
值得注意的是,在所有市场中反应最强烈的是人民币,在美联储上述决定后,离岸人民币兑美元(CNH)涨破6.59。
另据公开报道显示,2015年4月,黑龙江省人民政府企业投诉中心关于典型投诉问题的通报称,某企业投诉佳木斯市某建设项目指挥部。经查,佳木斯市工信委原副主任、该项目指挥部二组组长王永生等10名公职人员收受贿赂、失职渎职,导致部分被动迁企业诈骗国家动迁补偿款3471万元。市政府调研员苏咏平被追责,被行政撤职、留党察看处分。
澳门星彩大赢家
“微笑刺客”在第三节独得25分依然是总决赛历史上的单节得分纪录,其中11分来自于托马斯脚踝扭伤之后。正是靠着他的爆发,活塞在半场落后7分的情况下以2分领先进入第四节。
国家统计局发言人盛来运近日在介绍5月国民经济运行情况时,就将制造业增加值和工业用电量数据作为工业生产中的“积极变化”。
如果算上股转系统开出的罚单,一大批券商将在2016年分类评级中得分必将再次下调,国泰君安、申万宏源等券商可能因在三板市场受罚而再次被扣分。
|