Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
概要(Overview・Refs Issue)
close EC-CUBE/Eccube-Styleguide#212
TOPページ内にある、お知らせのアニメーションの修正
実装に関する補足(Appendix)
動きがおかしかったのは、
margin
がアニメーション前になかったからと、アニメーションの動きがmax-height: 100vh;
になっていたからです。なので、margin
を付ける。height
の値を取得し、max-height: 0;
にする。そして、ボタンを押すと取得した値をmax-height
の値に変え、再度ボタンを押すとmax-height: 0;
に変える。この2つのように変更しました。
相談(Discussion)
現在、リロードせず画面サイズを変更すると、お知らせの説明文の行数が変わり、
overflow: hidden;
の影響で、説明文が途中で切れてしまいます。原因は最初に
height
の値を取得しているので、途中でheight
の値が変わると対応できないからです。