fix (user): issue with web animation API with partial frames casusing error
This commit is contained in:
sairaj mote 2020-11-23 10:15:41 +05:30
parent b54d28df9c
commit 73b99b0882
5 changed files with 1340 additions and 1223 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

View File

@ -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

2553
logo.ai

File diff suppressed because one or more lines are too long