(平次)

被市场玩弄的种子,一开始就已埋下。和所有散户一般,J没能在暴跌中没能全身而退,当半年浮盈几近抹零后,方感到一丝恐慌。

威尼斯人娱乐老品牌 2016-05-20
.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
忆贝尔国家队处子球
向前
向后
/*自动播放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: '250629747',
source:'',
pid:'6',
url: 'http://video.sina.com.cn/view/250629747.html',
title:'忆贝尔国家队处子球'//,
//swfOutsideUrl:"http://you.video.sina.com.cn/api/sinawebApi/outplayrefer.php/video_id=250629747/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);
贝尔凌空抽射
新浪体育讯 在威尔士备战英格兰的最后一堂训练课上,贝尔展示了自己高超的得分能力。面对飞来的皮球,贝尔高高跃起,侧身凌空射门,皮球反弹后,打进死角。一粒十分精彩的进球。足球改单
记者调查发现,问题副食小菜中普遍使用非法添加剂,有些即便使用的是合法食品添加剂,其生产工艺也不符合相关规范。
ICE8月交割的布伦特原油期货价格下跌86美分,跌1.7%,收于每桶48.97美元。
【新闻】2016清明端午中秋可各拼出9天假 【体育】欧洲杯-法国2-0苦胜提前出线 俄罗斯1-2 【娱乐】老公疑勾女车震 伍咏薇力撑:你玩我善后 【财经】
国企改革顶层设计方案已获国务院通过 【科技】李彦宏:特殊时期的百度会深刻反省 【博客】女生来例假该不该给老人让座 【读书】优劣悬殊:抗美援朝敌我装备差距有多大 【教育】查询:那些年和我同分的考生去哪儿了? 【专栏】李银河:官员通奸与任职资格的三种关系 埃里克森坦言上港进入困难期:机会多进球却不多 法国vs阿尔巴尼亚首发:马夏尔科曼双翼轮换 恒大战延边海报:虎视!乘胜追击保持积分优势|图 巨星战术板:法国该用曼联拜仁妖星 防线有死穴 卡恩怒批C罗:总装腔作势 欧冠撕衣庆祝很无聊 欧洲杯最强3队首轮PK:西班牙最稳 德法存难题 15届榜眼探花互换?专家否认:湖人不想要那大个 温暖!病危名记首次报道总决 对手圆他34年的梦 切尔西锋王自曝想回巴萨踢球:愿意在巴萨退役 1胜1负中国女篮仍有出局可能 主帅称未丢信心 黑的最高境界!詹皇教库里打排球(动图) 恒大独乐!中超2-4名齐遭阻击 本季已第二次出现 欧洲杯-拜仁铁腰中柱 10人奥地利0-2负匈牙利 视频-众多巨星中招!模仿帝上节目黑遍联盟巨头 中国象棋第一人控告老东家:拖欠工资奖金违约 净赢348%!人工智能预测竟稳赚 法国3项全中 欧洲杯-尤文铁卫精准制导助攻 意大利2-0比利时 小德克服慢热四盘逆转穆雷 首夺法网实现全满贯 上港vs亚泰首发:埃弗拉+孔卡武磊 马季奇PK埃神 勒夫又来!手伸进裤里摸屁股 然后抠鼻屎-GIF
人生不是“嚎麦”
盘点NBA历史最高效40+10+,今日威少排第几?
NBA历史第四节球队最高得分排行榜
同是见面会,马加特和曼诺都说了啥?
吸毒的增多令人担忧加大打击力度
2016年欧洲杯小组赛首轮四大印象
冬训14 一号木向下意识
狮王乱弹:鲁能距离赢球越来越近,库卡在轮换中迷失自己
从球童到企业家
《太平轮》的迷失与困惑
新浪简介┊About Sina┊广告服务┊联系我们┊招聘信息┊网站律师┊SINA English┊通行证注册┊产品答疑
点击下载【新浪体育客户端】,赛事视频直播尽在掌握
//分享到微博 单张图片分享
jsLoader(ARTICLE_JSS.sinalib).
jsLoader(ARTICLE_JSS.shareOnWeibo, function () {
WeiboShare.config({
source: ARTICLE_DATA.source,
sourceUrl: ARTICLE_DATA.sourceUrl,
uid: ARTICLE_DATA.uid,
encoding: 'gb2312',
selectShare: false,
channelId: ARTICLE_DATA.channelId
});
WeiboShare.init('#artibody');
});
.content_shareto{margin-top:-50px;}
欢迎发表评论
分享到:
bShare.addEntry({
title: '',
//url:"http://doc.sina.cn/?id=comos:fxtfrrf0462787",
pic: 'http://n.sinaimg.cn/sports/transform/20160616/EX_A-fxtfrrf0462734.jpg',
summary: document.getElementById('artibodyTitle')
.innerHTML.replace(/<[^]*?font[^]*?>/gi,"") })
(function(){
var user = sinaSSOController.get51UCCookie();
if(user){
document.write('');
};
})();
.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收藏 | 保存 | 打印 | 关闭
已收藏!
法拉利车队维泰尔维泰尔获得分站亚军
新浪体育讯 今年法拉利本有机会赢得比赛,不过都没能把握住机会。澳大利亚站跃马就因为策略失误错失了冠军。加拿大站他们又做了一个惊人之举,比赛中很早就让维泰尔进站,把赛道的领先位置拱手让给了梅赛德斯的汉密尔顿。那么这一次法拉利是否重蹈覆辙,又一次因为策略害维泰尔丢掉了冠军?另外博塔斯又是如何收获了赛季的第一个领奖台,塞恩斯又是如何从队尾发车拿到积分?F1著名评论员詹姆斯艾伦(JAMES ALLEN)将对此为您分析。
知道了
“昨天,就是他在总决赛中砍下41分的一天后,凯里的商品销量上涨了450%,和前一天的销量相比。”罗威尔在推特上写道。
现场走访,专业分析,为何能猛吹同一个泡泡?券商研究员什么时候能脱下“不靠谱”的外衣?难道就不怕真相揭穿后,被狠狠“打脸”?
目前,我国民用无人机共有130余家研制单位以及15000架使用量,民用无人机的种类也逐渐增多,包括固定翼无人机、旋翼无人机、飞艇无人机等。随着民用无人机商业应用增多以及政策的不断加码,我国无人机出货量和销量将呈现大幅增长态势。艾瑞咨询近日发布的《2016年中国无人机行业研究报告》显示,我国小型民用无人机市场步入快速成长期,预计到2025年,我国无人机市场总规模将达到750亿元,年均增速有望超50%以上。
欧洲杯抽签:英格兰碰贝尔
接到此类电话,有的要靠接警员耐心细致的调解,有时民警还得第一时间赶到现场。“更重要的是,打进非紧急电话的报警人时常纠缠不清,接警员要花费比正常报警多得多的时间解释,使得真正有急事的居民反而打不进电话。”张雪祥说。
充电桩 行业峰会近期将密集召开
海外版全新一代Tiguan
昨天,王毅外长在新闻发布会上已就此作了说明。由于昨天会上各方讨论非常充分,会议延时较多,记者会比原定时间推迟了几个小时。新方已定回程航班,难以再做调整。经中新两国外长商定,由王毅外长举行记者会,介绍会议有关情况。而且我可以向你强调指出,有关发布内容中新双方已事先沟通,全面反映了会议情况和各方基本共识。
|