0.4.14
fix (user): issue with web animation API with partial frames casusing error
This commit is contained in:
parent
b54d28df9c
commit
73b99b0882
BIN
Asset 2.png
BIN
Asset 2.png
Binary file not shown.
|
Before Width: | Height: | Size: 3.8 KiB |
@ -1830,6 +1830,7 @@ smStripOption.innerHTML = `
|
||||
padding: 0.4rem 0.8rem;
|
||||
cursor: pointer;
|
||||
overflow-wrap: break-word;
|
||||
white-space: nowrap;
|
||||
outline: none;
|
||||
border-radius: 2rem;
|
||||
text-transform: capitalize;
|
||||
|
||||
BIN
favicon_1.png
Normal file
BIN
favicon_1.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.8 KiB |
@ -51,8 +51,8 @@
|
||||
<line x1="64" y1="0" x2="0" y2="64" />
|
||||
<line x1="64" y1="64" x2="0" y2="0" />
|
||||
</svg>
|
||||
<h4 id="feature_title">Get Started</h4>
|
||||
<p id="feature_details">Lorem ipsum dolor sit amet consectetur adipisicing elit. Cum eaque tempore cumque?</p>
|
||||
<h4 id="feature_title"></h4>
|
||||
<p id="feature_details"></p>
|
||||
<div class="flex space-between align-center">
|
||||
<sm-button id="prev_tut_button" onclick="previousTutorial()" variant="primary">Back</sm-button>
|
||||
<div id="total_tuts"></div>
|
||||
@ -2338,7 +2338,10 @@
|
||||
circle.style.top = `${event.clientY - (target.getBoundingClientRect().top + radius)}px`;
|
||||
circle.classList.add("ripple");
|
||||
const rippleAnimation = circle.animate([
|
||||
|
||||
{
|
||||
transform: 'scale(0)',
|
||||
opacity: 1
|
||||
},
|
||||
{
|
||||
transform: 'scale(3)',
|
||||
opacity: 0
|
||||
|
||||
Loading…
Reference in New Issue
Block a user