LoginSignup
6
6

More than 5 years have passed since last update.

iMessageの吹き出しみたいなグラデーション

Last updated at Posted at 2017-08-02

cssgradiendimes.png

iMessageみたいに、スクロールしても複数の要素で固定されたグラデーションの背景をつけるものです。
小一時間悩みましたが、ものすごく初歩的なことでした。

background-attachment:fixed;

を設定するだけです。
background-positionで位置の調整をしています。

コード

SCSS

.stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  .comment {
    font-family: sans-serif;
    color: #fff;
    padding: 1em;
    margin: .5em 1em;
    text-align: right;
    background: linear-gradient(-180deg, #2EB5FE 0%, #157EFB 100%) fixed top right;
    border-radius: 13px;
  }
}

HTML

<div class="stack">
  <div class="comment">・・・</div>
</div>

サンプル

JSFiddle

iMessage like comment gradient

6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6