All Projects → brewhk → Takeoff

brewhk / Takeoff

Licence: mit
A smooth landing page to help your app take off!

Projects that are alternatives of or similar to Takeoff

tailwind-ui-components
Free Tailwind CSS UI Components - Crafted for modern websites, landing pages and web apps. TailGrids Core is free and open-source so, feel free to use with your personal or commercial projects. If you would like to show your support and love, don't forget to give us a star 🌟
Stars: ✭ 49 (-48.96%)
Mutual labels:  landing-page
Tailwind Landing Page Template
Simple Light is a free landing page template built on top of TailwindCSS and fully coded in React. Made by
Stars: ✭ 797 (+730.21%)
Mutual labels:  landing-page
Dev Landing Page
Minimal landing page for developers
Stars: ✭ 1,004 (+945.83%)
Mutual labels:  landing-page
responsive-christmas-website
Responsive Christmas Website Design Using HTML CSS & JavaScript
Stars: ✭ 72 (-25%)
Mutual labels:  landing-page
Ant Design Landing
🚵 Landing Pages of Ant Design System
Stars: ✭ 4,425 (+4509.38%)
Mutual labels:  landing-page
Developer Portfolio
Single page developer portfolio template.
Stars: ✭ 23 (-76.04%)
Mutual labels:  landing-page
react-landing-page
A landing page in 5 minutes.
Stars: ✭ 26 (-72.92%)
Mutual labels:  landing-page
Responsivedevices.css
Responsive CSS Device frames for your landing pages
Stars: ✭ 59 (-38.54%)
Mutual labels:  landing-page
Landing Page
Tailwind CSS Starter Template - Landing Page
Stars: ✭ 444 (+362.5%)
Mutual labels:  landing-page
Veluxi Starter
Veluxi Vue.js Starter Project with Nuxt JS and Vuetify
Stars: ✭ 39 (-59.37%)
Mutual labels:  landing-page
Kdintroview
Stars: ✭ 300 (+212.5%)
Mutual labels:  landing-page
Hugo Fresh
Hugo Fresh Theme
Stars: ✭ 317 (+230.21%)
Mutual labels:  landing-page
Gatsby Starter Alchemy
A Gatsby starter with PostCSS powers ✨🔮
Stars: ✭ 23 (-76.04%)
Mutual labels:  landing-page
Next-JS-Landing-Page-Starter-Template
🚀 Free NextJS Landing Page Template written in Tailwind CSS 3 and TypeScript ⚡️ Made with developer experience first: Next.js 12 + TypeScript + ESLint + Prettier + Husky + Lint-Staged + VSCode + Netlify + PostCSS + Tailwind CSS
Stars: ✭ 521 (+442.71%)
Mutual labels:  landing-page
Muximux
A lightweight way to manage your HTPC
Stars: ✭ 1,008 (+950%)
Mutual labels:  landing-page
gatsby-starter-landing-page
🖱 A simple, minimal Gatsby starter for quick and easy landing pages
Stars: ✭ 132 (+37.5%)
Mutual labels:  landing-page
Codeigniter Summernote Landing Page Builder
Landing page builder system using Codeigniter / Summernote
Stars: ✭ 17 (-82.29%)
Mutual labels:  landing-page
Simplest Startup Starter
Opinionated HTML landing page template
Stars: ✭ 60 (-37.5%)
Mutual labels:  landing-page
Next Landing Vpn
An Open Source Landingpage For VPN or Apps. Build using NextJS 10 and Tailwind v2.0
Stars: ✭ 49 (-48.96%)
Mutual labels:  landing-page
React Saas Template
🌊 Template for building an SaaS / admin website using React + Material-UI
Stars: ✭ 942 (+881.25%)
Mutual labels:  landing-page

takeoff

Takeoff Logo

A smooth landing page to help your app take off!

Demo

A demo speaks a thousand words.

Dependencies

Getting Started

Download the repository and have a look at the examples. If you get stuck, refer back to these examples.

Elements with an id or class beginning with takeoff__ has a function within Takeoff. You may add additional classes but do not change or remove the takeoff__ ID/class.

Structure

The landing page is made up of a header and/or footer, and a series of slides. Every slide has three blocks - the screens, the texts, the decorations.

takeoff-anatomy

The header and footer will stay in place, but the slides can be changed with up/down scroll, keyboard and swipe.

Theme

The look of your page is determined by the theme, which is just a CSS file on top of the base CSS. Use this to position and scale your decorations. In the examples, the theme files are named after the theme's name.

Usage

We have created a barebone template to help you get started - it contains no content but many comments to guide you along.

  1. Add in your title, favicons, theme CSS, header and footer

  2. Add your screens, text blocks and decoration blocks. Make sure the quantity of blocks of each type is the same.

  3. Download and include the EventEmitter.min.js,lethargy.min.js, smartscroll.min.js, takeoff.min.js (in that order) before the </body> closing tag and initiate the plugin.

    <script src="https://rawgit.com/Olical/EventEmitter/master/EventEmitter.min.js"></script>
    <script src="https://rawgit.com/d4nyll/lethargy/master/lethargy.min.js"></script>
    <script src="https://rawgit.com/d4nyll/smartscroll/master/smartscroll.min.js"></script>
    <script src="/js/takeoff.min.js"></script>
    

You may wish to combine and minify the .js files into one file. Just be sure to keep the load order described above.

  1. Initiate and take off!

    <script>
      $(function() {
        $.takeoff({
          changingBackground: true,
          slideDuration: 700
        });
      });
    </script>
    

You can pass an options object into $.takeoff(); the properties are detailed in the following section.

Options
changingBackground

Takeoff can subtly change the background colour of your page between different slides. Set the changingBackground option to true and add a data-tf-background-color to every .takeoff__backgroundBlock element. .takeoff__backgroundBlock blocks without a data-tf-background-color attribute will have a white (#ffffff) background.

<section class="takeoff__backgroundBlock" data-tf-background-color="#ff556b">
    Section 1
</section>
slideDuration

The duration of the slide animation, in miliseconds (ms).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].