How to use @times-components/sticky - 5 common examples

To help you get started, we’ve selected a few @times-components/sticky examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github newsuk / times-components / packages / article-skeleton / src / sticky-save-and-share-bar.js View on Github external
]};
`;

// This is to avoid transition styles being server side rendered which we
// do not need. They'll be quite large and are unnecessary on initial render
function SaveShareContainerWrapper(props) {
  return (
     }
      server={() => }
    />
  );
}

const StyledKeylineItem = styled(ArticleKeylineItem)`
  ${selectors.containsSticky(css`
    border-bottom-color: transparent;
  `)};
`;

const shouldBeSticky = mediaQuery(`(max-width: ${breakpoints.huge}px)`);

function StickySaveAndShareBar(props) {
  return (
    
      
        
      
github newsuk / times-components / packages / article-skeleton / src / sticky-save-and-share-bar.js View on Github external
function SaveShareContainerWrapper(props) {
  return (
     }
      server={() => }
    />
  );
}

const StyledKeylineItem = styled(ArticleKeylineItem)`
  ${selectors.containsSticky(css`
    border-bottom-color: transparent;
  `)};
`;

const shouldBeSticky = mediaQuery(`(max-width: ${breakpoints.huge}px)`);

function StickySaveAndShareBar(props) {
  return (
    
      
        
      
    
  );
}

export default StickySaveAndShareBar;
github newsuk / times-components / packages / article-skeleton / src / sticky-save-and-share-bar.js View on Github external
${props =>
    props.isClient && [
      selectors.sizer(css`
        border-bottom: 1px solid transparent;
        will-change: border-bottom-color;
      `),
      selectors.sticky(css`
        will-change: height, box-shadow;
      `),
      computeProgressStyles(
        progress => css`
          height: ${60 - progress * 10}px;
          box-shadow: 0 2px 5px 0 ${rgba(0, 0, 0, 0.2 * progress)};

          ${selectors.stickySizer(css`
            border-bottom-color: ${rgba(
              colours.functional.keyline,
              Math.max(0, 1 - 2 * progress)
            )};
github newsuk / times-components / packages / article-skeleton / src / sticky-save-and-share-bar.js View on Github external
${props =>
    props.isClient && [
      selectors.sizer(css`
        border-bottom: 1px solid transparent;
        will-change: border-bottom-color;
      `),
      selectors.sticky(css`
        will-change: height, box-shadow;
      `),
      computeProgressStyles(
        progress => css`
          height: ${60 - progress * 10}px;
          box-shadow: 0 2px 5px 0 ${rgba(0, 0, 0, 0.2 * progress)};

          ${selectors.stickySizer(css`
            border-bottom-color: ${rgba(
              colours.functional.keyline,
              Math.max(0, 1 - 2 * progress)
            )};
          `)};
        `
      )
    ]};
github newsuk / times-components / packages / article-skeleton / src / sticky-save-and-share-bar.js View on Github external
progress => css`
          height: ${60 - progress * 10}px;
          box-shadow: 0 2px 5px 0 ${rgba(0, 0, 0, 0.2 * progress)};

          ${selectors.stickySizer(css`
            border-bottom-color: ${rgba(
              colours.functional.keyline,
              Math.max(0, 1 - 2 * progress)
            )};
          `)};
        `
      )

@times-components/sticky

Attach children to viewport on scroll (web only)

BSD-3-Clause
Latest version published 3 months ago

Package Health Score

84 / 100
Full package analysis