Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 952 Bytes

README.md

File metadata and controls

44 lines (30 loc) · 952 Bytes

git clone https://github.com/sambernhardt/ipad-cursor.git

npm i

npm run start

Preview

Basic usage

Add the CursorProvider to a page

// app.js

import App from 'next/app';
import CursorProvider from '../cursor/Provider';

export default class MyApp extends App {
  render () {
    const { Component, pageProps } = this.props;
    
    return (
      <CursorProvider>
        <Component {...pageProps} />
      </CursorProvider>
    )
  }
}

Then wrap your components with the WithHover function

// Component.js
import WithHover from '../cursor/WithHover';

const Component = () => <h1>;

export default WithHover(<Component />, 'block');

Caveats:

  • To move the contents of the hovered component, the component must have a display type of inline-block or block. CSS transforms don't work on inline elements.