Reset an animation created with css via button click









up vote
1
down vote

favorite












I am trying to reset an animation which is already applied to an element with button click. Here is my code, how can I do that? I tried some but couldn't make it.



css code



.slide-in-left 
-webkit-animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) both;
animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) both


@-webkit-keyframes slide-in-left
0%
-webkit-transform:translateX(-1000px);
transform:translateX(-1000px);
opacity:0

100%
-webkit-transform:translateX(0);
transform:translateX(0);
opacity:1



@keyframes slide-in-left
0%
-webkit-transform:translateX(-1000px);
transform:translateX(-1000px);
opacity:0

100%
-webkit-transform:translateX(0);
transform:translateX(0);
opacity:1




html code



<div class="slide-in-left" style="background-color: green" id="myDIV">
<p>totalCash</p>
</div>
<button (click)="sumCash(cashInput.value); cashInput.value=''" >Add</button>


js code



sumCash() 
this.totalCash += parseInt(this.cash);
;


here is stackblitz link:
https://stackblitz.com/edit/angular-k5soac










share|improve this question



























    up vote
    1
    down vote

    favorite












    I am trying to reset an animation which is already applied to an element with button click. Here is my code, how can I do that? I tried some but couldn't make it.



    css code



    .slide-in-left 
    -webkit-animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) both;
    animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) both


    @-webkit-keyframes slide-in-left
    0%
    -webkit-transform:translateX(-1000px);
    transform:translateX(-1000px);
    opacity:0

    100%
    -webkit-transform:translateX(0);
    transform:translateX(0);
    opacity:1



    @keyframes slide-in-left
    0%
    -webkit-transform:translateX(-1000px);
    transform:translateX(-1000px);
    opacity:0

    100%
    -webkit-transform:translateX(0);
    transform:translateX(0);
    opacity:1




    html code



    <div class="slide-in-left" style="background-color: green" id="myDIV">
    <p>totalCash</p>
    </div>
    <button (click)="sumCash(cashInput.value); cashInput.value=''" >Add</button>


    js code



    sumCash() 
    this.totalCash += parseInt(this.cash);
    ;


    here is stackblitz link:
    https://stackblitz.com/edit/angular-k5soac










    share|improve this question

























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I am trying to reset an animation which is already applied to an element with button click. Here is my code, how can I do that? I tried some but couldn't make it.



      css code



      .slide-in-left 
      -webkit-animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) both;
      animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) both


      @-webkit-keyframes slide-in-left
      0%
      -webkit-transform:translateX(-1000px);
      transform:translateX(-1000px);
      opacity:0

      100%
      -webkit-transform:translateX(0);
      transform:translateX(0);
      opacity:1



      @keyframes slide-in-left
      0%
      -webkit-transform:translateX(-1000px);
      transform:translateX(-1000px);
      opacity:0

      100%
      -webkit-transform:translateX(0);
      transform:translateX(0);
      opacity:1




      html code



      <div class="slide-in-left" style="background-color: green" id="myDIV">
      <p>totalCash</p>
      </div>
      <button (click)="sumCash(cashInput.value); cashInput.value=''" >Add</button>


      js code



      sumCash() 
      this.totalCash += parseInt(this.cash);
      ;


      here is stackblitz link:
      https://stackblitz.com/edit/angular-k5soac










      share|improve this question















      I am trying to reset an animation which is already applied to an element with button click. Here is my code, how can I do that? I tried some but couldn't make it.



      css code



      .slide-in-left 
      -webkit-animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) both;
      animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) both


      @-webkit-keyframes slide-in-left
      0%
      -webkit-transform:translateX(-1000px);
      transform:translateX(-1000px);
      opacity:0

      100%
      -webkit-transform:translateX(0);
      transform:translateX(0);
      opacity:1



      @keyframes slide-in-left
      0%
      -webkit-transform:translateX(-1000px);
      transform:translateX(-1000px);
      opacity:0

      100%
      -webkit-transform:translateX(0);
      transform:translateX(0);
      opacity:1




      html code



      <div class="slide-in-left" style="background-color: green" id="myDIV">
      <p>totalCash</p>
      </div>
      <button (click)="sumCash(cashInput.value); cashInput.value=''" >Add</button>


      js code



      sumCash() 
      this.totalCash += parseInt(this.cash);
      ;


      here is stackblitz link:
      https://stackblitz.com/edit/angular-k5soac







      javascript html css animation transform






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 10 at 23:19









      Andy

      27.2k63159




      27.2k63159










      asked Nov 10 at 23:13









      Alperzkn

      105111




      105111






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          0
          down vote



          accepted










          I solved my problem by using setInterval() like this;
          first removed class from element, after that added same class with some delay. Now it triggers the same class again.



          my css code;



          .slide-in-left
          -webkit-animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) both;
          animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) both;
          background-color: green;


          @-webkit-keyframes slide-in-left0%-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0100%-webkit-transform:translateX(0);transform:translateX(0);opacity:1@keyframes slide-in-left0%-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0100%-webkit-transform:translateX(0);transform:translateX(0);opacity:1


          html code



          <p>Cash</p><input #cashInput placeholder="Add cash" [(ngModel)]="cash">
          <div class="slide-in-left" id="myDiv">
          <p>totalCash</p>
          </div>
          <button (click)="sumCash(cashInput.value); cashInput.value=''" onclick="sumCash($event);">Add</button>


          ts code



          import Component from '@angular/core';

          @Component(
          selector: 'my-app',
          templateUrl: './app.component.html',
          styleUrls: [ './app.component.css' ]
          )
          export class AppComponent
          public cash: string = "0";
          public totalCash: number = 0;

          sumCash()
          this.totalCash += parseInt(this.cash);
          this.cash = "0";

          var divItem = document.getElementById("myDiv");
          divItem.classList.remove("slide-in-left");

          var interval = setInterval(
          function()
          divItem.classList.add("slide-in-left");
          , 1
          );
          ;



          stackblitz link:
          https://stackblitz.com/edit/angular-k5soac






          share|improve this answer



























            up vote
            0
            down vote













            You shall do



            <button onclick="myFunction();">


            JavaScript:



            function myFunction() 
            //or any other selector like 'getElementBy'...
            var demo = document.querySelector('#myElement');
            demo.style.animation="none";
            ;





            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',
              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%2f53244343%2freset-an-animation-created-with-css-via-button-click%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes








              up vote
              0
              down vote



              accepted










              I solved my problem by using setInterval() like this;
              first removed class from element, after that added same class with some delay. Now it triggers the same class again.



              my css code;



              .slide-in-left
              -webkit-animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) both;
              animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) both;
              background-color: green;


              @-webkit-keyframes slide-in-left0%-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0100%-webkit-transform:translateX(0);transform:translateX(0);opacity:1@keyframes slide-in-left0%-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0100%-webkit-transform:translateX(0);transform:translateX(0);opacity:1


              html code



              <p>Cash</p><input #cashInput placeholder="Add cash" [(ngModel)]="cash">
              <div class="slide-in-left" id="myDiv">
              <p>totalCash</p>
              </div>
              <button (click)="sumCash(cashInput.value); cashInput.value=''" onclick="sumCash($event);">Add</button>


              ts code



              import Component from '@angular/core';

              @Component(
              selector: 'my-app',
              templateUrl: './app.component.html',
              styleUrls: [ './app.component.css' ]
              )
              export class AppComponent
              public cash: string = "0";
              public totalCash: number = 0;

              sumCash()
              this.totalCash += parseInt(this.cash);
              this.cash = "0";

              var divItem = document.getElementById("myDiv");
              divItem.classList.remove("slide-in-left");

              var interval = setInterval(
              function()
              divItem.classList.add("slide-in-left");
              , 1
              );
              ;



              stackblitz link:
              https://stackblitz.com/edit/angular-k5soac






              share|improve this answer
























                up vote
                0
                down vote



                accepted










                I solved my problem by using setInterval() like this;
                first removed class from element, after that added same class with some delay. Now it triggers the same class again.



                my css code;



                .slide-in-left
                -webkit-animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) both;
                animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) both;
                background-color: green;


                @-webkit-keyframes slide-in-left0%-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0100%-webkit-transform:translateX(0);transform:translateX(0);opacity:1@keyframes slide-in-left0%-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0100%-webkit-transform:translateX(0);transform:translateX(0);opacity:1


                html code



                <p>Cash</p><input #cashInput placeholder="Add cash" [(ngModel)]="cash">
                <div class="slide-in-left" id="myDiv">
                <p>totalCash</p>
                </div>
                <button (click)="sumCash(cashInput.value); cashInput.value=''" onclick="sumCash($event);">Add</button>


                ts code



                import Component from '@angular/core';

                @Component(
                selector: 'my-app',
                templateUrl: './app.component.html',
                styleUrls: [ './app.component.css' ]
                )
                export class AppComponent
                public cash: string = "0";
                public totalCash: number = 0;

                sumCash()
                this.totalCash += parseInt(this.cash);
                this.cash = "0";

                var divItem = document.getElementById("myDiv");
                divItem.classList.remove("slide-in-left");

                var interval = setInterval(
                function()
                divItem.classList.add("slide-in-left");
                , 1
                );
                ;



                stackblitz link:
                https://stackblitz.com/edit/angular-k5soac






                share|improve this answer






















                  up vote
                  0
                  down vote



                  accepted







                  up vote
                  0
                  down vote



                  accepted






                  I solved my problem by using setInterval() like this;
                  first removed class from element, after that added same class with some delay. Now it triggers the same class again.



                  my css code;



                  .slide-in-left
                  -webkit-animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) both;
                  animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) both;
                  background-color: green;


                  @-webkit-keyframes slide-in-left0%-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0100%-webkit-transform:translateX(0);transform:translateX(0);opacity:1@keyframes slide-in-left0%-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0100%-webkit-transform:translateX(0);transform:translateX(0);opacity:1


                  html code



                  <p>Cash</p><input #cashInput placeholder="Add cash" [(ngModel)]="cash">
                  <div class="slide-in-left" id="myDiv">
                  <p>totalCash</p>
                  </div>
                  <button (click)="sumCash(cashInput.value); cashInput.value=''" onclick="sumCash($event);">Add</button>


                  ts code



                  import Component from '@angular/core';

                  @Component(
                  selector: 'my-app',
                  templateUrl: './app.component.html',
                  styleUrls: [ './app.component.css' ]
                  )
                  export class AppComponent
                  public cash: string = "0";
                  public totalCash: number = 0;

                  sumCash()
                  this.totalCash += parseInt(this.cash);
                  this.cash = "0";

                  var divItem = document.getElementById("myDiv");
                  divItem.classList.remove("slide-in-left");

                  var interval = setInterval(
                  function()
                  divItem.classList.add("slide-in-left");
                  , 1
                  );
                  ;



                  stackblitz link:
                  https://stackblitz.com/edit/angular-k5soac






                  share|improve this answer












                  I solved my problem by using setInterval() like this;
                  first removed class from element, after that added same class with some delay. Now it triggers the same class again.



                  my css code;



                  .slide-in-left
                  -webkit-animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) both;
                  animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) both;
                  background-color: green;


                  @-webkit-keyframes slide-in-left0%-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0100%-webkit-transform:translateX(0);transform:translateX(0);opacity:1@keyframes slide-in-left0%-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0100%-webkit-transform:translateX(0);transform:translateX(0);opacity:1


                  html code



                  <p>Cash</p><input #cashInput placeholder="Add cash" [(ngModel)]="cash">
                  <div class="slide-in-left" id="myDiv">
                  <p>totalCash</p>
                  </div>
                  <button (click)="sumCash(cashInput.value); cashInput.value=''" onclick="sumCash($event);">Add</button>


                  ts code



                  import Component from '@angular/core';

                  @Component(
                  selector: 'my-app',
                  templateUrl: './app.component.html',
                  styleUrls: [ './app.component.css' ]
                  )
                  export class AppComponent
                  public cash: string = "0";
                  public totalCash: number = 0;

                  sumCash()
                  this.totalCash += parseInt(this.cash);
                  this.cash = "0";

                  var divItem = document.getElementById("myDiv");
                  divItem.classList.remove("slide-in-left");

                  var interval = setInterval(
                  function()
                  divItem.classList.add("slide-in-left");
                  , 1
                  );
                  ;



                  stackblitz link:
                  https://stackblitz.com/edit/angular-k5soac







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 11 at 9:14









                  Alperzkn

                  105111




                  105111






















                      up vote
                      0
                      down vote













                      You shall do



                      <button onclick="myFunction();">


                      JavaScript:



                      function myFunction() 
                      //or any other selector like 'getElementBy'...
                      var demo = document.querySelector('#myElement');
                      demo.style.animation="none";
                      ;





                      share|improve this answer


























                        up vote
                        0
                        down vote













                        You shall do



                        <button onclick="myFunction();">


                        JavaScript:



                        function myFunction() 
                        //or any other selector like 'getElementBy'...
                        var demo = document.querySelector('#myElement');
                        demo.style.animation="none";
                        ;





                        share|improve this answer
























                          up vote
                          0
                          down vote










                          up vote
                          0
                          down vote









                          You shall do



                          <button onclick="myFunction();">


                          JavaScript:



                          function myFunction() 
                          //or any other selector like 'getElementBy'...
                          var demo = document.querySelector('#myElement');
                          demo.style.animation="none";
                          ;





                          share|improve this answer














                          You shall do



                          <button onclick="myFunction();">


                          JavaScript:



                          function myFunction() 
                          //or any other selector like 'getElementBy'...
                          var demo = document.querySelector('#myElement');
                          demo.style.animation="none";
                          ;






                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Nov 11 at 9:16









                          Tân Nguyễn

                          4,51832452




                          4,51832452










                          answered Nov 10 at 23:19









                          codeWithMe

                          160110




                          160110



























                               

                              draft saved


                              draft discarded















































                               


                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53244343%2freset-an-animation-created-with-css-via-button-click%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







                              這個網誌中的熱門文章

                              Barbados

                              How to read a connectionString WITH PROVIDER in .NET Core?

                              Node.js Script on GitHub Pages or Amazon S3