├── .gitignore
├── example
├── src
│ ├── main.js
│ ├── index.html
│ ├── App.js
│ ├── app.css
│ ├── useHover.js
│ ├── accordion.css
│ ├── tabs.css
│ ├── autoplayed-tabs.js
│ ├── simple-tabs.js
│ ├── animated-tabs.js
│ ├── accordion.js
│ └── height-tabs.js
└── package.json
├── ship.config.js
├── .babelrc.js
├── .eslintrc
├── .github
├── renovate.json
└── workflows
│ ├── ci.yml
│ ├── shipjs-trigger.yml
│ └── shipjs-manual-prepare.yml
├── test
└── index.test.js
├── changelog.md
├── rollup.config.js
├── readme.md
├── package.json
└── src
└── index.js
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .cache
3 | dist
4 | .DS_Store
5 | yarn.lock
6 | coverage
7 |
--------------------------------------------------------------------------------
/example/src/main.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import { render } from 'react-dom'
3 | import App from './App'
4 |
5 | render(
Panel 1
Panel 2
panel 3
{children}
: null; 60 | }; 61 | 62 | export default () => ( 63 |31 | In sociology, anthropology, and linguistics, structuralism is the 32 | methodology that implies elements of human culture must be understood 33 | by way of their relationship to a broader, overarching system or 34 | structure. It works to uncover the structures that underlie all the 35 | things that humans do, think, perceive, and feel. Alternatively, as 36 | summarized by philosopher Simon Blackburn, structuralism is "the 37 | belief that phenomena of human life are not intelligible except 38 | through their interrelations. These relations constitute a structure, 39 | and behind local variations in the surface phenomena there are 40 | constant laws of abstract structure". 41 |
42 |46 | The input range must be a linear series of numbers. The output range 47 | can be any value type supported by Framer Motion: numbers, colors, 48 | shadows, etc. 49 |
50 |54 | Creates a MotionValue that, when set, will use a spring animation to 55 | animate to its new state. 56 |
57 |animations with framer/motion
63 |is pure
67 |❤️
71 |48 | Creates a MotionValue that, when set, will use a spring animation to 49 | animate to its new state. 50 |
51 |56 | In sociology, anthropology, and linguistics, structuralism is the 57 | methodology that implies elements of human culture must be 58 | understood by way of their relationship to a broader, overarching 59 | system or structure. It works to uncover the structures that 60 | underlie all the things that humans do, think, perceive, and feel. 61 | Alternatively, as summarized by philosopher Simon Blackburn, 62 | structuralism is "the belief that phenomena of human life are not 63 | intelligible except through their interrelations. These relations 64 | constitute a structure, and behind local variations in the surface 65 | phenomena there are constant laws of abstract structure". 66 |
67 |72 | The input range must be a linear series of numbers. The output range 73 | can be any value type supported by Framer Motion: numbers, colors, 74 | shadows, etc. 75 |
76 |54 | In sociology, anthropology, and linguistics, structuralism is the 55 | methodology that implies elements of human culture must be 56 | understood by way of their relationship to a broader, overarching 57 | system or structure. It works to uncover the structures that 58 | underlie all the things that humans do, think, perceive, and feel. 59 | Alternatively, as summarized by philosopher Simon Blackburn, 60 | structuralism is "the belief that phenomena of human life are not 61 | intelligible except through their interrelations. These relations 62 | constitute a structure, and behind local variations in the surface 63 | phenomena there are constant laws of abstract structure". 64 |
65 |69 | The input range must be a linear series of numbers. The output 70 | range can be any value type supported by Framer Motion: numbers, 71 | colors, shadows, etc. 72 |
73 |77 | Creates a MotionValue that, when set, will use a spring animation 78 | to animate to its new state. 79 |
80 |