[Client] 🎨

This commit is contained in:
syuilo 2017-03-22 01:00:13 +09:00
parent a3f799ca48
commit 6665233c00
3 changed files with 11 additions and 3 deletions

View file

@ -1,7 +1,7 @@
{ {
"name": "misskey", "name": "misskey",
"author": "syuilo <i@syuilo.com>", "author": "syuilo <i@syuilo.com>",
"version": "0.0.1414", "version": "0.0.1419",
"license": "MIT", "license": "MIT",
"description": "A miniblog-based SNS", "description": "A miniblog-based SNS",
"bugs": "https://github.com/syuilo/misskey/issues", "bugs": "https://github.com/syuilo/misskey/issues",

View file

@ -26,6 +26,7 @@
width 100% width 100%
height 100% height 100%
background rgba(0, 0, 0, 0.1) background rgba(0, 0, 0, 0.1)
opacity 0
> .popover > .popover
position absolute position absolute
@ -130,9 +131,16 @@
this.refs.popover.style.top = y + 'px'; this.refs.popover.style.top = y + 'px';
} }
anime({
targets: this.refs.backdrop,
opacity: 1,
duration: 100,
easing: 'linear'
});
anime({ anime({
targets: this.refs.popover, targets: this.refs.popover,
opacity: [0, 1], opacity: 1,
scale: [0.5, 1], scale: [0.5, 1],
duration: 500 duration: 500
}); });

View file

@ -64,7 +64,7 @@
targets: this.root, targets: this.root,
opacity: 1, opacity: 1,
easing: 'linear', easing: 'linear',
duration: 50 duration: 100
}); });
}); });
</script> </script>