fixed css transition of alert

このコミットが含まれているのは:
dragon1211 2021-12-20 22:30:18 -08:00
コミット 19d4ceaae7
4個のファイルの変更11行の追加1行の削除

バイナリファイルは表示されません。

変更前

幅:  |  高さ:  |  サイズ: 3.3 MiB

バイナリ
backend/public/assets/img/common/icon.png ノーマルファイル

バイナリファイルは表示されません。

変更後

幅:  |  高さ:  |  サイズ: 35 KiB

ファイルの表示

@ -15,6 +15,9 @@
z-index: 1000;
// duration | timing-function | delay | iteration-count | direction | fill-mode | play-state | name
animation: 1s ease-out 2s 1 normal forwards running fadeOut;
-moz-animation: 1s ease-out 2s 1 normal forwards running fadeOut;
-webkit-animation: 1s ease-out 2s 1 normal forwards running fadeOut;
-o-animation: 1s ease-out 2s 1 normal forwards running fadeOut;
}
.alert-fail {
@ -52,10 +55,17 @@
@keyframes fadeOut {
0% {
transform: translateY(0%);
-moz-transform: translateY(0%);
-webkit-transform: translateY(0%);
-o-transform: translateY(0%);
}
100% {
opacity: 0;
display: none;
transform: translateY(-100%);
-moz-transform: translateY(-100%);
-webkit-transform: translateY(-100%);
-o-transform: translateY(-100%);
}
}

ファイルの表示

@ -1,6 +1,6 @@
@extends('admin.layout')
@section('title', '管理者')
@section('title', 'KIKI')
@php
$routers = ['meeting', 'child', 'parent'];