Jump to content
Search Community

Jophine

Members
  • Posts

    5
  • Joined

  • Last visited

Posts posted by Jophine

  1. Dear Carl

    Thanks for the support

     

    but still my problem is not solved.

     

    one the above link (filter:inherit). its working but one small problem is there. the inner div position is very in ie8 and chrome (other browsers)

    attaching the screen snaps

    post-13181-0-82716000-1355405858_thumb.png

    post-13181-0-64556500-1355405863_thumb.png

  2. Thanks for the support.

     

    when i change the position of the inner div element.

     

    <div id="bgHolder" style="background-color: #adff2f; width: 200px; height: 200px; position:absolute;">
    <div id="fgHolder" style="background-color:aqua; width: 50px; height: 50px; top:30px; left:50px; position:absolute;"></div>
    </div>
    var bg = document.getElementById("bgHolder");
    TweenLite.to(bg, 10, {css:{x:500, y:700}});
    TweenLite.to(bg, 10, {css:{scale:3}});
    ​
    

     

     

    http://jsfiddle.net/jophine/FLt9X/

     

    Any solution for this

  3. Hai,

     

    i am facing issues in IE8 browser which have TweenLite.

    <!-- MY Javascript Code-->
    
    <script src="../../js/libs/jquery-1.7.2.min.js" type="text/javascript"></script>
    <script src="../../js/libs/tweenlite/CSSPlugin.min.js" type="text/javascript"></script>
    <script src="../../js/libs/tweenlite/TweenLite.js" type="text/javascript"></script>
    
    function startTween(){
    	 var bg = document.getElementById("bgHolder");
    	 TweenLite.to(bg, 10, {css:{x:500, y:700}});
    }
    <!-- MY Html Code-->
    <button type="button" onclick="startTween()">Start Tween</button>
    <div id="bgHolder" style="background-color: #adff2f; width: 200px; height: 200px">
    <div id="fgHolder" style="background-color:aqua; width: 50px; height: 50px"></div>
    </div>
    

     

     

     

    While running this code in Chrome is working fine but running IE8 its shows something different. my library's are updated, any solution for this

     

    my code also in http://jsfiddle.net/jophine/cdWhF/44/

×
×
  • Create New...