var iVideo, aVideo=[], aComment; $(document).ready( onDocumentReady ); function onDocumentReady() { aVideo=[{ title:"美国骨科医师协会主席访谈", subtitle:"北京 国际骨科年会", info:"2015年8月1日", file:"interview.mp4", thumbnail: "interview_thumbnail.jpg", publish: "市场部 2015-09-18 发布", view:55, comment:10, like:26, hd:true, length:"00:02:05" },{ title:"北美脊柱协会(NASS)介绍", subtitle:"North American Spine Society", info:"www.spine.org", file:"nass.mp4", thumbnail: "nasslogo.png", publish: "市场部 2015-09-19 发布", view:105, comment:12, like:28, hd:true, length:"00:05:29" },{ title:"欧洲脊柱协会(EuroSpine)介绍", subtitle:"Philip Sell (主席)", info:"www.eurospine.org", file:"eurospine.mp4", thumbnail: "eurospine.jpg", publish: "市场部 2015-09-20 发布", view:82, comment:6, like:15, hd:false, length:"00:08:46" }]; pageInit(showCatalog); } function showCatalog() { var html=""; for (var i=0; i"; s+=div("div_catalog_info", div("div_catalog_title", v.title)+ div("div_catalog_subtitle", v.subtitle)+ div("div_catalog_subtitle", v.info) ); s+=div("div_catalog_publish", v.publish); s+=div("div_catalog_stats", div("div_catalog_view", v.view)+ div("div_catalog_comment", v.comment)+ div("div_catalog_like", v.like) ); s+=div("div_catalog_res_"+(v.hd?"on":"off"), v.hd?"高清":"标清"); s+=div("div_catalog_length", v.length); s+=div("div_catalog_new"); html+=div("div_catalog_item", s, "showVideo("+i+")"); } $("#div_catalog_group").html(html); menuSwitch("catalog"); } function showVideo(i) { iVideo=i; $("#div_video_title").html(aVideo[i].title); var src="http://localhost:8080/sfez/pic/video/"+aVideo[iVideo].file; $("#video_main").attr("src", src); alertMessage("正在获取视频……请稍候"); pageGo("video", videoPlay); } function videoPlay() { $("video").trigger("play"); } function videoStop() { $("video").trigger("pause"); }