view source
JavaScript
$(function(){
/*
@keyframes ani{
0% {
transform: scale(1, 1);
}
25% {
transform: scale(1.1, 1.1);
}
50% {
transform: scale(0.9, 0.9);
}
75% {
transform: scale(1.1, 1.1);
}
100% {
transform: scale(1, 1);
}
}
*/
var hash = {
name : 'ani',
prop : 'transform',
obj : {
0 : 'scale(1, 1)',
20 : 'scale(1.2, 1.2)',
40 : 'scale(1, 1)',
60 : 'scale(0.6, 0.6)',
100 : 'scale(1, 1)',
}
}
var hash2 = {
name : 'ani2',
prop : 'background-color',
obj : {
0 : '#000',
20 : '#f00',
40 : '#00f',
60 : '#0f0',
90 : '#000',
100 : '#000',
}
}
var hash3 = {
name : 'rot',
prop : 'transform',
obj : {
0 : 'rotate(0deg)',
50 : 'rotate(0deg)',
100 : 'rotate(360deg)',
}
}
var styleTag = $('<style>').text(
createKeyframes(hash) +
createKeyframes(hash2) +
createKeyframes(hash3)
);
$('head').append(styleTag);
var p = $('<p>').css({
display:'inline-block',
margin: 40,
width: 400,
height: 400,
backgroundColor: '#000',
});
$('#demo').append(p);
var textarea = $('<textarea>').val(styleTag.text());
$('#demo').append(textarea);
var center = p.width()/2;
console.log(p.width());
p.css({
'transform-origin' : center+'px ' + center+'px',
'animation-duration': '1.2s',
'animation-timing-function': 'cubic-bezier(0, 1.26, 0.85,-0.2)',
'animation-iteration-count': 'infinite',
'animation-name': 'ani,ani2,rot',
});
});
var createKeyframes = function(hash){
var text = '';
text += '@keyframes ' + hash.name;
text += '{';
Object.keys(hash.obj).forEach(function (key) {
text += key + '%';
text += '{';
text += hash.prop + ':' + '' + hash.obj[key] + ';';
text += '}';
});
text += '}';
text += "\n";
return text;
}
CSS
@keyframes ani2{
0% {
transform: scale(1, 1);
}
25% {
transform: scale(1.1, 1.1);
}
50% {
transform: scale(0.9, 0.9);
}
75% {
transform: scale(1.1, 1.1);
}
100% {
transform: scale(1, 1);
}
}
HTML
ページのソースを表示 : Ctrl+U , DevTools : F12
view-source:https://hi0a.com/demo/-js/js-css-animation/
ABOUT
hi0a.com 「ひまアプリ」は無料で遊べるミニゲームや便利ツールを公開しています。
プログラミング言語の動作デモやWEBデザイン、ソースコード、フロントエンド等の開発者のための技術を公開しています。
必要な機能の関数をコピペ利用したり勉強に活用できます。
プログラムの動作サンプル結果は画面上部に出力表示されています。
環境:最新のブラウザ GoogleChrome / Windows / Android / iPhone 等の端末で動作確認しています。
画像素材や音素材は半分自作でフリー素材配布サイトも利用しています。LINK参照。
動く便利なものが好きなだけで技術自体に興味はないのでコードは汚いです。
途中放置や実験状態、仕様変更、API廃止等で動かないページもあります。