我的
Mr.Right整体形象设计学院——金奔军教学FBR修剪之高角度堆积层次
播放:92422
00:00 13:56
  • 免费课程
标题: Mr.Right整体形象设计学院——金奔军教学FBR修剪之高角度堆积层次 2018-05-18



>>more
  • 2025年(第二届)全国形象设计大赛在扬州举行 音频
    2:19

    2025年(第二届)全国形象设计大赛在扬州举行

    2025年5月21日,第二届全国形象设计大赛在扬州举行。

    播放:305877 2025-05-24

  • MAJOR麦哲形象设计十周年VVIP答谢盛典圆满落幕 音频
    1:42

    MAJOR麦哲形象设计十周年VVIP答谢盛典圆满落幕

    11月3日下午,MAJOR麦哲形象设计十周年VVIP答谢盛典隆重举办

    播放:303732 2024-11-5

  • Mr.Right整体形象设计学院——若颜-水平向上吹风手法 音频
    7:02

    Mr.Right整体形象设计学院——若颜-水平向上吹风手法

    Mr.Right整体形象设计学院——若颜-水平向上吹风手法

    播放:103597 2019-04-26

  • Mr.Right整体形象设计学院——黄龙涛-小道具拍摄 音频
    4:35

    Mr.Right整体形象设计学院——黄龙涛-小道具拍摄

    Mr.Right整体形象设计学院——黄龙涛-小道具拍摄

    播放:95017 2019-04-26

  • Mr.Right整体形象设计学院——张思宇-前卫风格造型打造 音频
    7:31

    Mr.Right整体形象设计学院——张思宇-前卫风格造型打造

    Mr.Right整体形象设计学院——张思宇-前卫风格造型打造

    播放:148608 2019-04-25

  • Mr.Right整体形象设计学院——金奔军-柔美造型修剪 音频
    15:27

    Mr.Right整体形象设计学院——金奔军-柔美造型修剪

    Mr.Right整体形象设计学院——金奔军-柔美造型修剪

    播放:150268 2019-04-25

  • Mr.Right整体形象设计学院——林建勇-中发造型修剪 音频
    17:41

    Mr.Right整体形象设计学院——林建勇-中发造型修剪

    Mr.Right整体形象设计学院——林建勇-中发造型修剪

    播放:299833 2019-04-24

  • Mr.Right整体形象设计学院——黄龙涛-拍摄的角度 音频
    3:30

    Mr.Right整体形象设计学院——黄龙涛-拍摄的角度

    Mr.Right整体形象设计学院——黄龙涛-拍摄的角度

    播放:300117 2019-04-24

浏览:

评论:

人物志
空间设计
', 'title': 'Mr.Right整体形象设计学院——金奔军教学FBR修剪之高角度堆积层次', 'artist': '' }); /*S.ready(function(){ //AdImg(); //cacheajax('9532'); //HfPlayer.play(); }); */ function cacheajax(ids) { //console.log('ks'); IO.getJSON("/common/ajaxcachehit.html?ids=" + ids, function (data) { if (data != null) { var dataLength = data.length; for (i = 0; i < dataLength; i++) { $("#PraiseCount").html('播放:' + data[i].number); } } }); } var taudioLength = '13:56'.split(':'); audioLength2 = parseInt(taudioLength[0]) * 60 + parseInt(taudioLength[1]); var new_url = "/news/2018/10009529.html"; // 播放器 播放事件 .status HfPlayer.on("timeupdate", function (e) { audioCurrentTime2 = e.currentTime; audioLength2 = e.duration; $("#bar_newsInfo").css('width', e.currentTime / e.duration * 100 + '%'); var wrapperLefts = $("#bar_newsInfo").width() - 20; if (wrapperLefts > 0) { counter_n.css('left', wrapperLefts + 'px'); counterCurrentLeft2 = wrapperLefts; } else { counter_n.css({left: "0px" }); } $("#currentTime").html(getMinutesSecondsTime(audioCurrentTime2)) $("#curTime").html(getMinutesSecondsTime(audioLength2)); if (audioCurrentTime2 == audioLength2 || audioCurrentTime2 >= audioLength2 - 2) { window.location.href = new_url; } }); //播放器停止事件 HfPlayer.on("ended", function (e) { PlayState2 = 0; counterCurrentLeft2 = 0; $(".slider2 .counter").css({left: "0px" }); $("#bar_newsInfo").css({width: "0px" }); AudioPauseState(); }); $(".counter").on("touchstart", function (e) { if (e.targetTouches.length == 1) { e.preventDefault(); // 阻止浏览器默认事件,重要 if (PlayState2 > 0) { //未播放时,禁止拖动 var pos = getMousePosition(e); //记录触点初始位置 startX = pos.x; counterStartLeft = counter_n.css("left").replace("px", ""); moveCount = 0; HfPlayer.pause(); } } }, false); $(".counter").on("touchmove", function (e) { if (e.targetTouches.length == 1) { e.preventDefault(); // 阻止浏览器默认事件,重要 if (PlayState2 > 0) { //未播放时,禁止拖动 var pos = getMousePosition(e); var _x = pos.x - startX; //移动的X距离 moveCount += _x; var left = parseInt(counterStartLeft) + parseInt(moveCount); if (left < 0) { left = 0; } if (left > wrapperLeft - 20) { left = wrapperLeft - 20; } counterCurrentLeft2 = left; counter_n.css({left: left + "px" }); $("#bar_newsInfo").css({width: left+20 + "px" }); startX = pos.x; } } }, false); $(".counter").on("touchend", function (e) { //未播放时,禁止拖动 var val = parseInt((counterCurrentLeft2 + 20) * 1000 * audioLength2 / wrapperLeft); audioCurrentTime2 = val / 1000; HfPlayer.setPosition(val); AudioPlayState(); }, false); //按钮点击事件 $("#btnSwitch_n").on("click", function (e) { if (PlayState2 != 1) { HfPlayer.play(); AudioPlayState(); } else { HfPlayer.pause(); AudioPauseState(); } }); //前进 $("#btnFore_n").on("click", function (e) { if (PlayState2 > 0) { audioCurrentTime2 += 5; if (audioCurrentTime2 > audioLength2) { audioCurrentTime2 = audioLength2; } HfPlayer.setPosition(audioCurrentTime2 * 1000); } else { HfPlayer.play(); } AudioPlayState(); }); //后退 $("#btnBack_n").on("click", function (e) { if (PlayState2 > 0) { audioCurrentTime2 = audioCurrentTime2 - 5; if (audioCurrentTime2 < 0) { audioCurrentTime2 = 0; } HfPlayer.setPosition(audioCurrentTime2 * 1000); } else { HfPlayer.play(); } AudioPlayState(); }); //全部阅读 $(window).on("scroll", function () { if (isReadContent) { var windowHeight = domWindow.height() * 0.70; $(".ks-foot").css({top:windowHeight+ domWindow.scrollTop()+'px'}); } }); /* $("#btnReadFull_n").on("click", function (e) { //$("#NewsContent .ks-content").css({height:(S.DOM.viewportHeight())+'px'}); $("#warp_main").hide(); $("#NewsContent").show(); $("#top_menu1").hide(); $("#top_menu2").show(); isReadContent=true; var windowHeight=domWindow.height()*0.70; $(".ks-foot").css({top:windowHeight+ domWindow.scrollTop()+'px'}); }); */ $(".gbbutton,#top_menu2").on("click", function () { $("#warp_main").show(); $("#NewsContent").hide(); $("#UserContent_n").hide(); $("#top_menu2").hide(); $("#top_menu1").show(); isReadContent = false; }); //联系我们 $("#btnContent_n").on("click", function (e) { $("#UserContent_n .ks-content").css({height:(S.DOM.viewportHeight())+'px'}) $("#warp_main").hide(); $("#UserContent_n").show(); $("#top_menu1").hide(); $("#top_menu2").show(); }); $("#btnUserClose_n").on("click", function () { $("#warp_main").show(); $("#UserContent_n").hide(); }); //音频开始播放,页面相关DOM状态控制 AudioPlayState = function () { PlayState2 = 1; $("#btnSwitch_n").removeClass("btnplay"); $("#btnSwitch_n").addClass("btnpause"); } //音频暂停播放,页面相关DOM状态控制 AudioPauseState = function () { PlayState2 = 2; $("#btnSwitch_n").removeClass("btnpause"); $("#btnSwitch_n").addClass("btnplay"); } //"收藏" /* $("#btnFavorites_n").on("click",function(e){ if(!IsFavorites) { IO.get("/common/collection.html",{id:9532},function(data){ if(data!=null){ if(data[0]=='0') { ShowErr(0,data[1]); IsFavorites=true; } else { ShowErr(3,data[1]); } } },"json"); } else { ShowErr(2,'该新闻广播已加入收藏!'); } });*/ Fun_Visit(3,9532); }); // 获得目前鼠标的位置 var getMousePosition = function (e) { var posx = 0; var posy = 0; var e = e.targetTouches[0]; if (e.pageX || e.pageY) { posx = e.pageX; posy = e.pageY; } return {'x': posx, 'y': posy}; } //秒转变成时分秒 var getMinutesSecondsTime = function (s) { s = parseInt(s); var hours = Math.floor(s / (60 * 60)); var minutes = Math.floor(s / 60) - Math.floor(s / 3600) * 60; var second = Math.floor(s) - Math.floor(s / 60) * 60; if (minutes < 10) { minutes = "0" + minutes.toString(); } if (second < 10) { second = "0" + second.toString(); } if (hours > 0) { return hours + ":" + minutes + ":" + second; } else if (minutes > 0) { return minutes + ":" + second; } else { return "00:" + second; } } /*function AudioPlay() { window.onload =function(){ WeixinJSBridge.invoke('getNetworkType', {}, function (e) { HfPlayer.play(); AudioPlayState(); }); }; } AudioPlay();*/ var AudioPlay = function () { document.removeEventListener('WeixinJSBridgeReady', AudioPlay); HfPlayer.play(); AudioPlayState(); }; document.addEventListener("WeixinJSBridgeReady", AudioPlay, false);