Jump to content
Search Community

Saul Rosenbaum

Members
  • Posts

    3
  • Joined

  • Last visited

Saul Rosenbaum's Achievements

4

Reputation

  1. Hey thanks for the replies - Syntax aside, I'm having a hard time just wrapping my head around how best to structure this my initial thought was something simple like this (and word of warning this is CRUDE as heck) (up and down arrow keys move the two containers up and down respectively) but at the point where it would need to repeat (when it reaches either end) I just can't figure out a smart way of doing that https://codepen.io/sauldraws/pen/bGBqRLL
  2. Just when you think you've heard every possible slider suggestion someone asked for this I found a pretty great wrapping slider example that got me 90% of the way to where I needed to be here in the forums, and truthfully the codepen I've referenced is fine but you'll notice that the left hand items (in this example, the titles) aren't in sequential orderer or in reverse order - and I KNOW there's a better more maintainable way to deal with them, but for the life of me I can't figure it out (and it's pseudo haunting me) I wouldn't mind if the titles where in ascending numerical order, or in decending numerical order but I just know that my janky solution will eventually bite me in the butt, so any help you can offer would be GREATLY appreciated tia Saul
  3. Ever have one of those mornings? Consider this a cautionary tale I was knocking together what should have been a very quick loader for a kiosk (do we still call them that?) I grabbed a starter file I had sitting around that had the following script tags <script src='https://cdnjs.cloudflare.com/ajax/libs/zepto/1.2.0/zepto.min.js'></script> <script src='https://cdnjs.cloudflare.com/ajax/libs/gsap/latest/TweenMax.min.js'></script> Instead of <script src='https://cdnjs.cloudflare.com/ajax/libs/zepto/1.0rc1/zepto.min.js'></script> <script src='https://cdnjs.cloudflare.com/ajax/libs/gsap/1.20.3/TweenMax.min.js'></script> Now because I'm showing you both - the obvious error is... um...obvious, but it wasn't obvious to me and everything was fine and dandy - then the client showed up (with coffee and doughnuts) and the js errors started (screenshot of the console attached for your reference and bemusement) . I placated the client while I tried to figure out what the issue was - took me 5 minutes to create a working pen of just the part that was tossing the errors - but another 2 hours to realize why, luckily my studio cat entertained the client to the point of them losing track of time me, allowing me to fix everything to their satisfaction. really the only change needed was the script tag, for whatever reason it was chocking on lines 7-10 (the rotation function) I realize no one else will likely have this issue, ever - but I wanted to document it anyhow, this is the kind of micro-minutia that gets me - it's almost never the actual work.
×
×
  • Create New...