Tag Archives : JavaScript July 2015

  • Atomic Guide

    Pattern guides are created in order to gain a perspective of the project’s parts and inner workings. This process helps developers arrive at an educated decision based on the project’s context. By working in this fashion authors can identify possible coding issues and collectively organize these shared principles across an interface. Read More →

  • Detecting Scroll Position

    JavaScript is that magical creature that can add tremendous flavor to your interactions especially when its events like scrolling. The following is a review of properties available to authors that help detect scroll and position. Read More →

  • Lazy Flexslider for WordPress

    Carousels/sliders are one of the most widely used widgets in development for the Web today (although the debate over using them still varies in opinion). In my experience w/sliders there’s literally no need to load every single image for a slider on init window load. Today I share my implementation for a client project brought to me by Staple Web Design using WordPress and Flexslider (which does not support lazy loading out of the box). Read More →
  • Orbit Button Glow

    Maybe you’ve seen this type of interaction already if you’ve taken a glance at Polymer’s paper components. The idea is that when a click event is triggered an orb like glow appears and then vanishes at the end of the event. It’s a nice and subtle way to provide user feedback when they interact with an element on your page, but also doesn’t break layout if it sits next to other items. We achieve the effect through the use of keyframe animations, class toggling with JavaScript and using the animationend listener made available via JavaScript. Read More →