0.0.4 • Published 9 years ago

jquery-koma v0.0.4

Weekly downloads
5
License
MIT
Repository
github
Last release
9 years ago

jQuery.koma.js

Frame advance animation plugin.

Demo

Browsers

IE8+ and other new browsers

Install

git clone https://github.com/konweb/jQuery.koma.js.git

or

npm install jquery-koma

Get started

HTML

<!DOCTYPE html>
<html lang="en">
<head>
	<link rel="stylesheet" href="./css/style.css">
	<script src="//code.jquery.com/jquery-2.1.3.min.js"></script>
	<script src="./js/jquery.koma.min.js"></script>
</head>
<body>
	<div class="js-koma">
		<div class="img-wrap koma-items">
			<img src="./images/image1.png">
			<img src="./images/image2.png">
			<img src="./images/image3.png">
			...
		</div>
	</div>
</body>
</html>

CSS

.image-wrap{
	position: relative;
	height: 240px;
}
.image-wrap img{
	position: absolute;
}

JS

<script>
	$(function(){
		$('.js-koma').koma();
	});
</script>

Options

optiondescriptiondefaulttype
fpsアニメーションのFPS20Number
steps画像分割読み込み[]Array
itemEl画像を囲うclass名'.koma-items'String
restartEl再スタートボタンclass名'.koma-restart'String
stopElストップボタンclass名'.koma-stop'String
0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago