Coder Social home page Coder Social logo

kristianmandrup / paper-scroll-header-panel Goto Github PK

View Code? Open in Web Editor NEW

This project forked from polymerelements/paper-scroll-header-panel

0.0 3.0 0.0 947 KB

Fancy scrolling effects where the header animates between tall and condensed states

HTML 100.00%

paper-scroll-header-panel's Introduction

paper-scroll-header-panel

paper-scroll-header-panel contains a header section and a content section. The header is initially on the top part of the view but it scrolls away with the rest of the scrollable content. Upon scrolling slightly up at any point, the header scrolls back into view. This saves screen space and allows users to access important controls by easily moving them back to the view.

Important: The paper-scroll-header-panel will not display if its parent does not have a height. Using layout classes, you can easily make the paper-scroll-header-panel fill the screen

<body class="fullbleed layout vertical">
  <paper-scroll-header-panel class="flex">
    <paper-toolbar>
      Hello World!
    </paper-toolbar>
  </paper-scroll-header-panel>
</body>

or, if you would prefer to do it in CSS, just give html, body, and paper-scroll-header-panel a height of 100%:

html, body {
  height: 100%;
  margin: 0;
}
paper-scroll-header-panel {
  height: 100%;
}

paper-scroll-header-panel works well with paper-toolbar but can use any element that represents a header by adding a paper-header class to it.

<paper-scroll-header-panel>
  <paper-toolbar>Header</paper-toolbar>
  <div>Content goes here...</div>
</paper-scroll-header-panel>

Styling scroll-header-panel:

To change background for toolbar when it is at its full size:

paper-scroll-header-panel {
  --paper-scroll-header-panel-full-header: {
    background-color: red;
  };
}

To change the background for toolbar when it is condensed:

paper-scroll-header-panel {
  --paper-scroll-header-panel-condensed-header: {
    background-color: #f4b400;
  };
}

paper-scroll-header-panel's People

Contributors

blasten avatar cletusw avatar dfreedm avatar ebidel avatar frankiefu avatar garlicnation avatar inureyes avatar jklein24 avatar kevinpschaaf avatar mchmielarski avatar naoak avatar rictic avatar robdodson avatar sevcsik avatar sorvell avatar tjsavage avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.