Jump to content
Search Community

Jason Baciulis

Members
  • Posts

    23
  • Joined

  • Last visited

Posts posted by Jason Baciulis

  1. The survey is about display ads, optin offer on a blog is a different thing.

    As I mentioned, that is why marketers always are testing. And if numbers are telling that users are not happy, then you can try a different approach.

    But then again even if your bounce rate increased but your email list is growing faster with popups - that can still be a good tradeoff.

    So there is no simple answer or survey :)

     

  2. Thank you!

     

    As for the modal, I changed it to exit intent for now. It all comes down to testing. Right now there is simply not enough traffic, but in general, I don't think modals are bad if your offer is valuable and relevant.

     

  3. On 11/26/2015 at 0:53 PM, Dipscom said:

    Hey guys,

     

    I thought I would bump this up and add the following:

     

    https://support.sizmek.com/hc/en-us/articles/206136366--reference-glossary-HTML5-Shared-Libraries

     

    Sizmek now has an official list of external libraries and their respective CDN links.

    There is no way to access this list without logging into Sizmek. Could someone post a list here who has access? Or it is fine to load GSAP from Cloudflare CDN?

  4. @LipstickVoid Yes, current animation scrubber is not ideal. But it pauses on double click and there is a box with exact time as far as I remember.

     

    I had an idea to create most complete and awesome scrubber and integrate it with Bannertime. So feel free to share your ideas and suggestions. Maybe that will motivate me to focus on it more :) 

     

    As for templates you could fork generator-bannertime on GitHub and make your customizations. Here is the path where templates are located: generator-bannertime/generators/app/templates/src/300x250/

  5. You have to keep in mind that learning HTML, CSS, JS is an investment. By hand coding you deepen your knowledge and your thought process as a programmer. Eventually you can easily transition into front-end development/web animations. Who knows when you'll get bored with banners?

     

    If you're designer and you're also animating and have no desire whatsoever to code then Animate CC might be fine. If that's not the case I would seriously consider jumping into hand coding. Even if that's not the fastest workflow (although that's arguable).

    • Like 2
  6. Thanks guys, I figured how to make a collision detection work because of this topic.

     

    I am making a simple game to catch objects and so I need a counter. The problem is that checkHit function which runs onUpdate generates huge numbers.

     

    Maybe you have a solution how could I track a score?
     

    function checkHit() {
        for (var i = 0; i < cans; i++) {
            var selectCan = document.getElementsByClassName("small-can");
              if (Draggable.hitTest(trolley, selectCan, "80%") ) {
                TweenMax.set(selectCan, {autoAlpha: 0});
                TweenMax.killTweensOf(selectCan);
                  if (caughtCans < 5) {
                     counter.textContent = parseInt(counter.textContent) + 1;
                     caughtCans++;
                  }
            }
        }
    }

     

  7. Hey Blake, you mentioned that it could be changed to update on every animation frame instead of mouse move. I am trying to achieve a magnifying glass entering into view and magnifying image, but without mouse events. I would appreciate your help, because I couldn't figure it out.

×
×
  • Create New...