8000 GitHub - ronPy/flippy: Flippy is a cross-browser flip effect plugin for jQuery which allows you to flip whatever html element you want.
[go: up one dir, main page]

Skip to content
/ flippy Public
forked from yemM/flippy

Flippy is a cross-browser flip effect plugin for jQuery which allows you to flip whatever html element you want.

Notifications You must be signed in to change notification settings

ronPy/flippy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

What is Flippy ?

Flippy is a cross-browser flip effect plugin for jQuery which allows you to flip whatever html element you want.

Options

  • color_target : The targeted background color. (ex.: ‘aliceblue’ or ‘#f0f8ff’ | default: ‘white’)
  • content : The content to show after the flip effect, HTML or jQuery objects.
  • direction : The direction of the flip effect (‘RIGHT’, ‘LEFT’, ‘BOTTOM’, ‘TOP’ | default : ‘LEFT’)
  • duration : How long the flip effect is during in ms (default : 300).
  • depth : You can adjust the perspective effect (default : 0.12).
  • light : You can adjust light and shadow intensity (default : 60).
  • onStart : The function triggered before the animation start.
  • onMidway : The function triggered at half animation.
  • onFinish : The function triggered after the animation finish.

Example

$("#myFlippyBox").flippy({
	content:"Hi !",
	direction:"TOP",
	duration:"750",
	onStart:function(){
		alert("Let's flip");
	},
	onFinish:function(){
		alert("ok, it's flipped :)");
	}
});

Demo

http://blog.guilhemmarty.com/flippy/

About

Flippy is a cross-browser flip effect plugin for jQuery which allows you to flip whatever html element you want.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0