Flip animation support in IE










0















I am trying to implement flip animation. Here is the sample link: http://animista.net/play/basic/flip



and this is the class:



.flip-horizontal-bottom 
-webkit-animation: flip-horizontal-bottom 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
animation: flip-horizontal-bottom 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;



/**
* ----------------------------------------
* animation flip-horizontal-bottom
* ----------------------------------------
*/
@-webkit-keyframes flip-horizontal-bottom
0%
-webkit-transform: rotateX(0);
transform: rotateX(0);

100%
-webkit-transform: rotateX(-180deg);
transform: rotateX(-180deg);


@keyframes flip-horizontal-bottom
0%
-webkit-transform: rotateX(0);
transform: rotateX(0);

100%
-webkit-transform: rotateX(-180deg);
transform: rotateX(-180deg);




It works fine in Chrome and Firefox but does not work at all in IE11. What changes would I require to make it work in IE 11?










share|improve this question


























    0















    I am trying to implement flip animation. Here is the sample link: http://animista.net/play/basic/flip



    and this is the class:



    .flip-horizontal-bottom 
    -webkit-animation: flip-horizontal-bottom 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    animation: flip-horizontal-bottom 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;



    /**
    * ----------------------------------------
    * animation flip-horizontal-bottom
    * ----------------------------------------
    */
    @-webkit-keyframes flip-horizontal-bottom
    0%
    -webkit-transform: rotateX(0);
    transform: rotateX(0);

    100%
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);


    @keyframes flip-horizontal-bottom
    0%
    -webkit-transform: rotateX(0);
    transform: rotateX(0);

    100%
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);




    It works fine in Chrome and Firefox but does not work at all in IE11. What changes would I require to make it work in IE 11?










    share|improve this question
























      0












      0








      0








      I am trying to implement flip animation. Here is the sample link: http://animista.net/play/basic/flip



      and this is the class:



      .flip-horizontal-bottom 
      -webkit-animation: flip-horizontal-bottom 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
      animation: flip-horizontal-bottom 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;



      /**
      * ----------------------------------------
      * animation flip-horizontal-bottom
      * ----------------------------------------
      */
      @-webkit-keyframes flip-horizontal-bottom
      0%
      -webkit-transform: rotateX(0);
      transform: rotateX(0);

      100%
      -webkit-transform: rotateX(-180deg);
      transform: rotateX(-180deg);


      @keyframes flip-horizontal-bottom
      0%
      -webkit-transform: rotateX(0);
      transform: rotateX(0);

      100%
      -webkit-transform: rotateX(-180deg);
      transform: rotateX(-180deg);




      It works fine in Chrome and Firefox but does not work at all in IE11. What changes would I require to make it work in IE 11?










      share|improve this question














      I am trying to implement flip animation. Here is the sample link: http://animista.net/play/basic/flip



      and this is the class:



      .flip-horizontal-bottom 
      -webkit-animation: flip-horizontal-bottom 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
      animation: flip-horizontal-bottom 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;



      /**
      * ----------------------------------------
      * animation flip-horizontal-bottom
      * ----------------------------------------
      */
      @-webkit-keyframes flip-horizontal-bottom
      0%
      -webkit-transform: rotateX(0);
      transform: rotateX(0);

      100%
      -webkit-transform: rotateX(-180deg);
      transform: rotateX(-180deg);


      @keyframes flip-horizontal-bottom
      0%
      -webkit-transform: rotateX(0);
      transform: rotateX(0);

      100%
      -webkit-transform: rotateX(-180deg);
      transform: rotateX(-180deg);




      It works fine in Chrome and Firefox but does not work at all in IE11. What changes would I require to make it work in IE 11?







      html css html5 css3 animation






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 16 '18 at 4:48









      MrugMrug

      1148




      1148






















          1 Answer
          1






          active

          oldest

          votes


















          1














          From their "How to" notes:




          Also, some of the animations are experimental and may not work as expected in older browsers no matter how you prefix them. Use your own judgement or better yet – consult the super-useful caniuse.com to check for browser support.




          Besides, they don't provide the complete code as far as I can tell. They have a perspective:500px on their animation stage wrapper (in the demo) which makes it all work, and I don't see it mentioned anywhere in the download example code.



          Even after you add it, I doubt it will work in IE, as it lacks support for transform-style:preserve-3d, as pointed out in the answers here.






          share|improve this answer






















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53331606%2fflip-animation-support-in-ie%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            From their "How to" notes:




            Also, some of the animations are experimental and may not work as expected in older browsers no matter how you prefix them. Use your own judgement or better yet – consult the super-useful caniuse.com to check for browser support.




            Besides, they don't provide the complete code as far as I can tell. They have a perspective:500px on their animation stage wrapper (in the demo) which makes it all work, and I don't see it mentioned anywhere in the download example code.



            Even after you add it, I doubt it will work in IE, as it lacks support for transform-style:preserve-3d, as pointed out in the answers here.






            share|improve this answer



























              1














              From their "How to" notes:




              Also, some of the animations are experimental and may not work as expected in older browsers no matter how you prefix them. Use your own judgement or better yet – consult the super-useful caniuse.com to check for browser support.




              Besides, they don't provide the complete code as far as I can tell. They have a perspective:500px on their animation stage wrapper (in the demo) which makes it all work, and I don't see it mentioned anywhere in the download example code.



              Even after you add it, I doubt it will work in IE, as it lacks support for transform-style:preserve-3d, as pointed out in the answers here.






              share|improve this answer

























                1












                1








                1







                From their "How to" notes:




                Also, some of the animations are experimental and may not work as expected in older browsers no matter how you prefix them. Use your own judgement or better yet – consult the super-useful caniuse.com to check for browser support.




                Besides, they don't provide the complete code as far as I can tell. They have a perspective:500px on their animation stage wrapper (in the demo) which makes it all work, and I don't see it mentioned anywhere in the download example code.



                Even after you add it, I doubt it will work in IE, as it lacks support for transform-style:preserve-3d, as pointed out in the answers here.






                share|improve this answer













                From their "How to" notes:




                Also, some of the animations are experimental and may not work as expected in older browsers no matter how you prefix them. Use your own judgement or better yet – consult the super-useful caniuse.com to check for browser support.




                Besides, they don't provide the complete code as far as I can tell. They have a perspective:500px on their animation stage wrapper (in the demo) which makes it all work, and I don't see it mentioned anywhere in the download example code.



                Even after you add it, I doubt it will work in IE, as it lacks support for transform-style:preserve-3d, as pointed out in the answers here.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 16 '18 at 8:30









                Andrei GheorghiuAndrei Gheorghiu

                36.2k75076




                36.2k75076





























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53331606%2fflip-animation-support-in-ie%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Top Tejano songwriter Luis Silva dead of heart attack at 64

                    ReactJS Fetched API data displays live - need Data displayed static

                    政党