Jump to content
Search Community

SirBT

Members
  • Posts

    6
  • Joined

  • Last visited

Posts posted by SirBT

  1. Keeping in mind am using the Meteor framework...

    Currently, when i click on a specific button on my page, it redirects/loads to the intended page being a template.

     

    My desire is to use (timeLineLite() ) to animate  the intended page (template) by sliding it into the main page. 

    Is this possible to do? If so kindly show me how to.

     

    My codepen link where I indicate the issue is: 

     

    Thanks in advance

    See the Pen ORVyBq by SirBT (@SirBT) on CodePen

  2. @Jonathan

     
    Thanks for the response. I initially tried it on the
    Application version: Chrome 51.0.2704.81.
    Operating System: Android 5.0.2: HTC One Build/LRX22G
     
    which should be a more stable version but sill not working. What is strange is that it worked perfectly on the  previous Chrome version before I upgraded it. I shouldn't have to downgrade do for it to work should I?
     
    I also run a desktop version of Chromium Version 48.0.2564.116 Ubuntu 15.10 where it runs perfectly, I dare not upgrade the desktop version for obvious reasons.
    I have also tested the animation on Mozilla Firefox version 47.0 for Ubuntu Canonical - 1.0 where the animations also works well.
     
    Am I the first one you have come a across with this issue?
     
    Looking forward to your help...
  3. @Carl thank you very much for the help... Sorry for being unclear here, the chrome version I am referring to is the android app "Chrome Browser - Google" on my phone. Sorry, the app doesn't seem to have a number to indicate the version.

    However my animation works perfectly on my chrome desktop Version 48.0.2564.116 Ubuntu 15.10

     

    Anyway my animation only stopped working after the "Chrome Browser - Google" Updated. Am sure if you download and install the latest version of "Chrome Browser - Google" the animation will not work. Do you know what chrome version the animation will work on?

  4. I have a simple animation in my Meteor app based on TimelineLite which works as intended in Firefox, but doesn't work at all in Chromium.

     

    Kindly point out what  I am going wrong.

     

    My HTML code:

     

    <template name="testAnimation">

        <a href="#"> 
           <div align= "right" class="circleBase1 subMenu1" id="testAnimation2"  > </div>
       </a>
    </template>
     
     
     
    My JavaScript Code:
     
    Template.testAnimation.events({ 
     
    "click #testAnimation2": function() {
         var myMenuAnimation = new TimelineLite();
         myMenuAnimation.to($("#testAnimation2"), 0.5, {css:{left:30, bottom:20,}, ease: Power4.easeOut} );
     }
     
    });  
     
     
     
     
    My CSS code:
     
    .circleBase1{
        position: fixed;
        background-image:url(../images/searchicon.png);
        border-radius: 60%;
        display: inline-block;
        float: right;
        right: 30px;
        bottom: 20px;
        behavior: url(PIE.htc); /* remove if you don't care about IE8 */
    }
     
    .subMenu1 {
        box-shadow: 5px 1px 10px #808080;  
        z-index: 1999;
        right:30px;
        bottom: 20px;        
    }
     
    Thanks in advance

     

×
×
  • Create New...