├── .babelrc ├── .gitignore ├── css ├── components │ ├── banner.scss │ ├── features.scss │ └── header.scss ├── normalize.scss ├── style.css ├── style.css.map ├── style.scss └── variables.scss ├── images ├── 0-fees.svg ├── 0-interest.svg ├── arrow-right.svg ├── chat-support.svg ├── fast-delivery.svg ├── fixed-payment-option.svg ├── hand.webp ├── no-credit-check.svg └── play.svg ├── index.html ├── js ├── animations.js └── index.js └── package.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /css/components/banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/css/components/banner.scss -------------------------------------------------------------------------------- /css/components/features.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/css/components/features.scss -------------------------------------------------------------------------------- /css/components/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/css/components/header.scss -------------------------------------------------------------------------------- /css/normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/css/normalize.scss -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/css/style.css -------------------------------------------------------------------------------- /css/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/css/style.css.map -------------------------------------------------------------------------------- /css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/css/style.scss -------------------------------------------------------------------------------- /css/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/css/variables.scss -------------------------------------------------------------------------------- /images/0-fees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/images/0-fees.svg -------------------------------------------------------------------------------- /images/0-interest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/images/0-interest.svg -------------------------------------------------------------------------------- /images/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/images/arrow-right.svg -------------------------------------------------------------------------------- /images/chat-support.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/images/chat-support.svg -------------------------------------------------------------------------------- /images/fast-delivery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/images/fast-delivery.svg -------------------------------------------------------------------------------- /images/fixed-payment-option.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/images/fixed-payment-option.svg -------------------------------------------------------------------------------- /images/hand.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/images/hand.webp -------------------------------------------------------------------------------- /images/no-credit-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/images/no-credit-check.svg -------------------------------------------------------------------------------- /images/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/images/play.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/index.html -------------------------------------------------------------------------------- /js/animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/js/animations.js -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/js/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/html-css-hero-animation/HEAD/package.json --------------------------------------------------------------------------------