Jump to content
Search Community

N1DAN

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by N1DAN

  1. I guess I need to spend more time getting to know gsap api better. I would have naturally gravitated toward the isTweening but your psuedo code is defiantly cleaner than what I was imagining doing with isTweening. Thanks for the lesson! And yes it does help. Allot.
  2. Thanks for the info. Since it is my opensource project and I want it to be as forward compatible and versatile for people that might not be using it in the same ways that I am now, is overwrite:auto going to remain current or are things moving toward a more CPU friendly way of handling things? Also lets say that someone wanted to do a physics simulation behind the video player using GSAP would the overwrite:auto cause conflict? About what you said about the isTweening, I think the isTweening might be the only way to tell tweening object to stop and change direction handled by multiple but similar events, like when you mouse over the player you need to see the cursor and the controls. It's the same for the controls but you no longer need the timeout to hide the controls and the cursor; but you want a timeout when leaving the controls to hide the controls and the cursor (especially if the video is playing) all of which need to be interrupted and overwritten by the last event in 1/10000000 of a second depending on how fast your kid(or me) is spasming the mouse around. Im I right in my thinking if using isTweening in that scenario? If not Im thinking that im thinking about this entire redesign thing wrong then. Thanks again Jack!
  3. Yes that's exactly it. Thanks. Now I have a starting point. I think it might be time to invest in doing things right and do a bit of a redesign. Is there a way to see what tweens are conflicting? Like assigning an id to a tween or something? Maybe I can do something in a onUpdate()? I really thought that it would only be the ones in the show/hide functions which is why I started wrapping them in if(gsap.isTweening('div')). Thanks again.
  4. So a few years ago I built a video player in TweenMax -v 1.19.0 and just now updating the javascript including GSAP to -v 3.5.1. Havent used JS in 3 years so Im rusty to say the least. The biggest change I noticed was that the duration was inside the object like gsap.to('#thing', {duration:1, x: 20;});. Let me describe the problem, in my video player there is the standard controls at the bottom with the play, pause, fullscreen, volume each with tweens set to their background and foreground images to change size and color. Then I have listeners listening for mouseover/out of the control bar to show it or hide once a setTimeout() has happened. I spent allot of time setting this up to get the right player behaviour. EDIT: Turns out it has nothing to do with setTimeout() at all. It was just logical to think my issue was having an issue with future events and their tweens. I did not know that these conflicting tweens were happening inside and out of the setTimeout(). Here is a link to the video player in working order before updating from -v 1.19.0 Link removed. No longer current. Description of removed content. A functional player with tweens working as I expected them to work. They were working but maybe those tweens could have been thought out a bit better on my part. Here is a link to the player in not so functioning order. After 3.5.1. Link removed. Broken player description: Animations were blinky and jerky and wouldn't work as I expected at all. As it turns out the animations were acting exactly as they should. There had been many upgrades to performance that I was unaware of that in fact made my previous laziness far more apparent, well into the point of breaking everything. I have updated all my tweens in the file to include the duration in the object and not as function parameters. Literally the only changes that were made to tweens were the duration's being included in the object. The code below are the functions that are called. The crtl div is the actual div that holds all the player controls. The only change to the code is the placement of the duration inside the object as indicated by the original code being commented out right below the new gsap.to() calls. function shoVidCtrl(){ ctrlHidden = false; if(!video.paused){ play.style.zIndex = '10'; play.style.visibility = 'hidden'; pause.style.zIndex = '12'; pause.style.visibility = 'visible'; }else{ play.style.zIndex = '12'; play.style.visibility = 'visible'; pause.style.zIndex = '10'; pause.style.visibility = 'hidden'; } if(!video.muted){ muteVid.style.zIndex = '10'; muteVid.style.visibility = 'hidden'; unMuteVid.style.zIndex = '12'; unMuteVid.style.visibility = 'visible'; }else{ muteVid.style.zIndex = '12'; muteVid.style.visibility = 'visible'; unMuteVid.style.zIndex = '10'; unMuteVid.style.visibility = 'hidden'; } ctrl.style.visibility = 'visible'; gsap.to(ctrl, {duration: 0.5, opacity:1}); // TweenMax.to(ctrl, 0.5, {opacity:1}); video.style.cursor = 'default'; } function hideVidCtrl(){ ctrlHidden = true; gsap.to(ctrl, {duration: 0.5, opacity:0, onComplete:function(){ // TweenMax.to(ctrl, 0.5, {opacity:0, onComplete:function(){ ctrl.style.visibility = 'hidden'; play.style.visibility = 'hidden'; pause.style.visibility = 'hidden'; muteVid.style.visibility = 'hidden'; unMuteVid.style.visibility = 'hidden'; video.style.cursor = 'none'; }}); } below is a representation of how the above functions are called. There are a few places where a tween is called inside a setTimeout() and I was thinking that it might be conflicting with future events not handled? Im also bad at darts! video.addEventListener('mousemove', function(){ shoVidCtrl(); clearTimeout(mouseIdel); mouseIdel = setTimeout(hideVidCtrl, setCtrl.hideCtrlsTime * 1000); }, false); video.addEventListener('mouseout', function(){ video.removeEventListener('mousemove', shoVidCtrl); hideVidCtrl(); }, false); ctrl.addEventListener('mouseover', function(){ shoVidCtrl(); clearTimeout(mouseIdel); }, false); ctrl.addEventListener('mouseout', hideVidCtrl, false); I tried setting a variable in shared scope of the functions and using that variable to hold the different tween's for show and hide that are then triggered in the shoVidCtrl() hideVidCtrl() functions like so: var cTween; function shoVidCtrl(){ ctrlHidden = false; if(!gsap.isTweening(ctrl)){ if(!video.paused){ play.style.zIndex = '10'; play.style.visibility = 'hidden'; pause.style.zIndex = '12'; pause.style.visibility = 'visible'; }else{ play.style.zIndex = '12'; play.style.visibility = 'visible'; pause.style.zIndex = '10'; pause.style.visibility = 'hidden'; } if(!video.muted){ muteVid.style.zIndex = '10'; muteVid.style.visibility = 'hidden'; unMuteVid.style.zIndex = '12'; unMuteVid.style.visibility = 'visible'; }else{ muteVid.style.zIndex = '12'; muteVid.style.visibility = 'visible'; unMuteVid.style.zIndex = '10'; unMuteVid.style.visibility = 'hidden'; } ctrl.style.visibility = 'visible'; cTween = gsap.to(ctrl, {duration: 0.5, opacity:1}); // TweenMax.to(ctrl, 0.5, {opacity:1}); }else{ cTween.reverse(); } video.style.cursor = 'default'; } function hideVidCtrl(){ ctrlHidden = true; if(!gsap.isTweening(ctrl)){ cTween = gsap.to(ctrl, {duration: 0.5, opacity:0, onComplete:function(){ // TweenMax.to(ctrl, 0.5, {opacity:0, onComplete:function(){ ctrl.style.visibility = 'hidden'; play.style.visibility = 'hidden'; pause.style.visibility = 'hidden'; muteVid.style.visibility = 'hidden'; unMuteVid.style.visibility = 'hidden'; video.style.cursor = 'none'; }}); }else{ cTween.reverse(); } } Tried defining the tween outside the functions and set paused:true, and tried to manipulate the play(), reverse(), kill(). I know you guys want a codepen but I started writing and three hours later and 300 lines of code I thought it was a total waste of my time as I have no Idea where to even start, as it was once working and now it's not with more or less the exact same code. I have no Idea how to address it in my code because I have no Idea how your code has changed. I hope that everything I have said here makes sense. Any ideas will be appreciated as I have run out and my next step is starting from scratch on the UI controls
×
×
  • Create New...