Reset an animation created with css via button click
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
add a comment |
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
add a comment |
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
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
javascript html css animation transform
edited Nov 10 '18 at 23:19
Andy
29k73362
29k73362
asked Nov 10 '18 at 23:13
AlperzknAlperzkn
110111
110111
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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
add a comment |
You shall do
<button onclick="myFunction();">
JavaScript:
function myFunction()
//or any other selector like 'getElementBy'...
var demo = document.querySelector('#myElement');
demo.style.animation="none";
;
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
add a comment |
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
add a comment |
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
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
answered Nov 11 '18 at 9:14
AlperzknAlperzkn
110111
110111
add a comment |
add a comment |
You shall do
<button onclick="myFunction();">
JavaScript:
function myFunction()
//or any other selector like 'getElementBy'...
var demo = document.querySelector('#myElement');
demo.style.animation="none";
;
add a comment |
You shall do
<button onclick="myFunction();">
JavaScript:
function myFunction()
//or any other selector like 'getElementBy'...
var demo = document.querySelector('#myElement');
demo.style.animation="none";
;
add a comment |
You shall do
<button onclick="myFunction();">
JavaScript:
function myFunction()
//or any other selector like 'getElementBy'...
var demo = document.querySelector('#myElement');
demo.style.animation="none";
;
You shall do
<button onclick="myFunction();">
JavaScript:
function myFunction()
//or any other selector like 'getElementBy'...
var demo = document.querySelector('#myElement');
demo.style.animation="none";
;
edited Nov 11 '18 at 9:16
Foo
1
1
answered Nov 10 '18 at 23:19
codeWithMecodeWithMe
209210
209210
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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