Add fade out animation for copy container id feedback

Signed-off-by: Clement Ho <ClemMakesApps@gmail.com>
This commit is contained in:
Clement Ho 2016-06-01 10:06:09 -05:00
Родитель 458c3d687b
Коммит 1b68613b5a
2 изменённых файлов: 11 добавлений и 2 удалений

Просмотреть файл

@ -72,7 +72,7 @@ var ContainerSettingsGeneral = React.createClass({
_this.setState({
copiedId: false
});
}, 3000);
}, 5000);
},
handleSaveContainerName: function () {
@ -189,7 +189,7 @@ var ContainerSettingsGeneral = React.createClass({
if (this.state.copiedId) {
clipboardStatus = (
<p><strong>Copied to Clipboard</strong></p>
<p className="fadeOut"><strong>Copied to Clipboard</strong></p>
);
}

Просмотреть файл

@ -83,6 +83,15 @@
.disabled {
border-bottom: none;
}
.fadeOut {
animation: fade-out 5s ease-in-out forwards;
}
@keyframes fade-out {
0% { opacity: 0; }
10% { opacity: 1; }
85% { opacity: 1; }
100% { opacity: 0; }
}
p {
font-weight: 300;
margin-top: 5px;