💫 Updating animations and transitions

This commit is contained in:
Liyas Thomas
2019-12-08 22:38:32 +05:30
parent d018ebda7e
commit cd8b4d0dd1
6 changed files with 24 additions and 13 deletions

View File

@@ -71,10 +71,7 @@ body {
// Make theme transition smoother. // Make theme transition smoother.
body.afterLoad { body.afterLoad {
&, transition: all 0.2s ease-in-out;
& * {
transition: background-color 0.2s ease-in-out, border 0.2s ease-in-out;
}
} }
body.sticky-footer footer { body.sticky-footer footer {
@@ -450,7 +447,7 @@ fieldset {
margin: 16px 0; margin: 16px 0;
border: 1px solid var(--brd-color); border: 1px solid var(--brd-color);
border-radius: 8px; border-radius: 8px;
background-color: var(--bg-color); transition: all 0.2s ease-in-out;
} }
legend { legend {
@@ -813,10 +810,6 @@ input[type="radio"]:checked + label + .tab {
margin-left: 16px; margin-left: 16px;
} }
.bg-color {
background-color: var(--bg-color);
}
@media (max-width: $responsiveWidth) { @media (max-width: $responsiveWidth) {
.content { .content {
flex-flow: column; flex-flow: column;
@@ -832,6 +825,7 @@ input[type="radio"]:checked + label + .tab {
bottom: 0; bottom: 0;
width: 100%; width: 100%;
background-color: var(--bg-color); background-color: var(--bg-color);
transition: all 0.2s ease-in-out;
} }
nav.primary-nav { nav.primary-nav {

View File

@@ -311,6 +311,10 @@ ol li {
padding: 16px 0; padding: 16px 0;
} }
.bg-color {
background-color: var(--bg-color);
}
@media (max-width: 720px) { @media (max-width: 720px) {
.virtual-list.filled { .virtual-list.filled {
min-height: 320px; min-height: 320px;

View File

@@ -45,11 +45,11 @@
flex-grow: 1; flex-grow: 1;
flex-direction: column; flex-direction: column;
margin: 8px; margin: 8px;
padding: 12px; padding: 16px;
transition: all 0.2s ease; transition: all 0.2s ease;
background-color: var(--bg-color); background-color: var(--bg-color);
border-radius: 8px; border-radius: 8px;
box-shadow: rgba(0, 0, 0, 0.5) 0px 16px 70px; box-shadow: 0px 16px 70px rgba(0, 0, 0, 0.5);
} }
/* /*

View File

@@ -1,5 +1,10 @@
<template> <template>
<div class="color" :data-color="color" :class="{ active: active }" v-tooltip="{ content: name || color }"> <div
class="color"
:data-color="color"
:class="{ active: active }"
v-tooltip="{ content: name || color }"
>
<span :style="{ backgroundColor: color }" class="preview"> <span :style="{ backgroundColor: color }" class="preview">
<i v-if="active" class="material-icons activeTick">done</i> <i v-if="active" class="material-icons activeTick">done</i>
</span> </span>
@@ -15,6 +20,7 @@
border-radius: 100%; border-radius: 100%;
border: 3px solid var(--bg-dark-color); border: 3px solid var(--bg-dark-color);
cursor: pointer; cursor: pointer;
transition: all 0.2s ease-in-out;
&.fg { &.fg {
color: var(--act-color); color: var(--act-color);

View File

@@ -34,7 +34,7 @@ export default {
render: { render: {
bundleRenderer: { bundleRenderer: {
shouldPreload: (file, type) => { shouldPreload: (file, type) => {
return ['script', 'style', 'font'].includes(type) return ["script", "style", "font"].includes(type);
} }
} }
}, },

View File

@@ -410,6 +410,7 @@ export default {
const startTime = Date.now(); const startTime = Date.now();
this.$nuxt.$loading.start(); this.$nuxt.$loading.start();
this.scrollInto("response");
try { try {
let headers = {}; let headers = {};
@@ -462,6 +463,7 @@ export default {
async getSchema() { async getSchema() {
const startTime = Date.now(); const startTime = Date.now();
this.schemaString = "Loading..."; this.schemaString = "Loading...";
this.scrollInto("schema");
// Start showing the loading bar as soon as possible. // Start showing the loading bar as soon as possible.
// The nuxt axios module will hide it when the request is made. // The nuxt axios module will hide it when the request is made.
@@ -628,6 +630,11 @@ export default {
} }
}); });
console.log(oldHeaders); console.log(oldHeaders);
},
scrollInto(view) {
this.$refs[view].$el.scrollIntoView({
behavior: "smooth"
});
} }
} }
}; };