@kkeeth/riot-flipcard

2.0.1 • Public • Published

A small riot tag which flips the content in 3d using css transforms.

Install

npm install @kkeeth/riot-flipcard

Demo

https://kkeeth.github.io/riot-flipcard/

Usage

You'll need too add style="display:none" to prevent the flash on content load. You can also add <style>flipcard{display:none}</style> to the head of your document.

<flipcard style="display:none">
  <div class="front">
    <p>Your Front Content</p>
    <button onclick="{toggle}">Flip</button>
  </div>
  <div class="back">
    <p>Your Back Content</p>
    <button onclick="{toggle}">Flip</button>
  </div>
</flipcard>

There are three methods you can call within the flipcard tag

Methods Description
toggle swaps front to back
front switches to front
back switches to back

Front and back can be useful for hover effects ie.

<flipcard>
  <div class="front" onmouseover="{back}">
    <p>Your Front Content</p>
  </div>
  <div class="back" onmouseleave="{front}">
    <p>Your Back Content</p>
  </div>
</flipcard>

Styling

You can style flipcard any way you like.

Either add a class

<flipcard class="mycard">...</flipcard>

Or add an inline style

<flipcard style="width:300px;height:300px;">...</flipcard>

Direction

By default flipcard flips horizontally.

But it can also flip vertically

<flipcard direction="y">...</flipcard>

Or Diagonally

<flipcard direction="xy">...</flipcard>

License

The MIT License

Readme

Keywords

none

Package Sidebar

Install

npm i @kkeeth/riot-flipcard

Weekly Downloads

156

Version

2.0.1

License

MIT

Unpacked Size

11.3 kB

Total Files

5

Last publish

Collaborators

  • kkeeth