How do I add a top and bottom shadow while scrolling but only when needed?

前端 未结 3 853
半阙折子戏
半阙折子戏 2020-12-23 12:08

How do I add a shadow when a container overflows but only when needed?

What I mean by this is:

  • if there is content available to scroll
相关标签:
3条回答
  • 2020-12-23 12:21

    I apologize for answering my own question here but after some googling, I found a good CSS-only solution that works in chrome on macOS.

    @Hash provided a solution taken from lea verou's blog. Her solution uses background-attachment: local to achieve the effect however this is currently broken in chrome 59 on macOS??

    It worked in 2012 but not in 2017 for me right now at least


    It works in 2020 now so you can look at the accepted answer instead of this one.

    0 讨论(0)
  • 2020-12-23 12:28

    Here's a pure CSS solution I put together that puts the shadow over the content instead of behind it.

    /* Stuff that doesn't matter */
    
    html {
      font-size: 16px;
    }
    
    body {
      margin: 0;
      padding: 0;
      font: 1rem/1.5 arial, sans-serif;
    }
    
    .c-container {
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
      padding: 0 2rem;
      box-sizing: border-box;
    }
    
    .c-header {
      width: 100%;
      padding: 1rem 0;
      background: white;
    }
    
    .c-header_heading {
      margin: 0;
      font-size: 2rem;
      font-weight: bold;
    }
    
    /* Stuff that matters */
    
    .c-scrollbox {
      position: relative;
      width: 100%;
      height: 200px;
      overflow: scroll;
    }
    
    .c-scrollbox::before {
      content: '';
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      display: block;
      height: 1px;
      background: rgba(0,0,0,.32);
    }
    
    .c-scrollbox::after {
      content: '';
      position: absolute;
      top: 0;
      display: block;
      width: 100%;
      height: 1rem;
      background: linear-gradient(rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    }
    <div class="c-container">
      <header class="c-header">
        <h1 class="c-header_heading">Shadow on Scroll</h1>
      </header>
      <div class="c-scrollbox">
        <p>Maecenas faucibus mollis interdum. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ullamcorper nulla non metus auctor fringilla. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Cras justo odio, dapibus ac facilisis in, egestas eget quam.</p>
        <p>Donec id elit non mi porta gravida at eget metus. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Etiam porta sem malesuada magna mollis euismod. Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
        <p>Vestibulum id ligula porta felis euismod semper. Nullam quis risus eget urna mollis ornare vel eu leo. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nullam quis risus eget urna mollis ornare vel eu leo. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</p>
        <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Donec id elit non mi porta gravida at eget metus. Nulla vitae elit libero, a pharetra augue. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Cras justo odio, dapibus ac facilisis in, egestas eget quam.</p>
      </div>
    </div>

    0 讨论(0)
  • 2020-12-23 12:32

    I think your looking for something like this;

    Reference : LINK

    html {
      background: white;
      font: 120% sans-serif;
    }
    
    .scrollbox {
      overflow: auto;
      width: 200px;
      max-height: 200px;
      margin: 50px auto;
      background: /* Shadow covers */
      linear-gradient(white 30%, rgba(255, 255, 255, 0)), linear-gradient(rgba(255, 255, 255, 0), white 70%) 0 100%, /* Shadows */
      radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, .2), rgba(0, 0, 0, 0)), radial-gradient(50% 100%, farthest-side, rgba(0, 0, 0, .2), rgba(0, 0, 0, 0)) 0 100%;
      background: /* Shadow covers */
      linear-gradient(white 30%, rgba(255, 255, 255, 0)), linear-gradient(rgba(255, 255, 255, 0), white 70%) 0 100%, /* Shadows */
      radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, .2), rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, .2), rgba(0, 0, 0, 0)) 0 100%;
      background-repeat: no-repeat;
      background-color: white;
      background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
      /* Opera doesn't support this in the shorthand */
      background-attachment: local, local, scroll, scroll;
    }
    <div class="scrollbox">
      <ul>
        <li>I Show Below Shadow. Go Down Now</li>
        <li>1</li>
        <li>2</li>
        <li>3</li>
        <li>4</li>
        <li>5</li>
        <li>6</li>
        <li>7</li>
        <li>8</li>
        <li>9</li>
        <li>10</li>
        <li>11</li>
        <li>12</li>
        <li>13</li>
        <li>14</li>
        <li>15</li>
        <li>16</li>
        <li>17</li>
        <li>18</li>
        <li>19</li>
        <li>20</li>
        <li>The end!</li>
        <li>No shadow here. See Above. Go Up</li>
      </ul>
    </div>

    0 讨论(0)
提交回复
热议问题