並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 40 件 / 90件

新着順 人気順

easingの検索結果1 - 40 件 / 90件

  • jQuery Easing Plugin

    Example Click on any of the yellow headers to see the default easing method in action (I've set as easeOutBounce for the demo, just because it's obviously different). All done with a straight animate call, no need to specify the animation type at all. Select easing types for the demo first one for down, second one for up. Then click the clicker. Updates 12/11/07 1.3 jQuery easing now supports a de

    • Ceaser - CSS Easing Animation Tool - Matthew Lein

      • jQuery Easing - jQuery 日本語リファレンス

        Easing/jQuery easingとは、エフェクトの動きを加速/減速させるための関数です。 例えばフェードアウトの動きを考えたとき、通常は透明度の変化量は経過時間に対して線形です。全体で1秒かかって消える処理であれば、0.5秒経過時の透明度は0.5になります。 しかし、ここでeaseInQuadの動きを適用すると、変化量は線形ではなく2次関数の曲線になります。(下記サンプル参照) そのため、最初はゆっくりと薄くなっていき、後半に急激に消えていくような効果が得られます。 特別なことをしなくても使うことの出来るeasingは"linear"と"swing"の2種類だけですが、プラグインなどを入れることで多くのeasingを利用することができます。 このeasingプラグインでは、version 1.3時点で32パターンが提供されています。 これ以外にもeasingは比較的容易に自作するこ

        • Easing Functions Cheat Sheet

          Easing functions specify the rate of change of a parameter over time. Objects in real life don’t just start and stop instantly, and almost never move at a constant speed. When we open a drawer, we first move it quickly, and slow it down as it comes out. Drop something on the floor, and it will first accelerate downwards, and then bounce back up after hitting the floor. This page helps you choose t

            Easing Functions Cheat Sheet
          • 緩急をともなったイージングのアニメーションをCSSやJSで実装する時のスニペットのまとめ -Easing Functions

            にょい~ん、ぐい~んなどの緩急をともなったアニメーションを実装するCSSやJavaScriptのスニペットをまとめたEasing Functionsを紹介します。 Easing Functions Cheat Sheet Easing Functions -GitHub イージングのアニメーションの動きを確認 イージングのアニメーションの種類 イージングのアニメーションの実装 イージングのアニメーションの動きを確認 イージングとは動きに加速や減速を加え等速で動くのとは違ったエフェクトを与えるもので、最初ゆっくりでだんだん早くしたり、床にバウンドするような動きを与えます。 登録されているイージングのアニメーションの動きは、それぞれのグラフをホバーするとレッドのアローがその動きをします。

            • ひと味違ったページ内スクロールをjQuery Easingプラグインで実装する jQuery.easing.scroll.js :: 5509

              ひと味違ったページ内スクロールをjQuery Easingプラグインで実装する jQuery.easing.scroll.js サンプルを見る (IE6では確認できません jQueryを使うとかなり簡単にページ内スクロールが実装できるのですが、さらにjQuery Easingプラグインと合わせるとなかなか面白い動きができたりします。 というわけで誰でも簡単に導入できるようにプラグインにしました。以前にslideScroll.js(jQueryプラグイン版)というページ内スクロールの記事を書きましたが、悲しいことに断然こちらのほうがおすすめです。動きが滑らか…そして自分の好きな動きから選べます。 今回はソースの解説もしてるので、興味のある人は見てみてください。 ページ内スクロールプラグインなのに、7KBもあるのはEasingプラグインの容量が5KBだから…これを機に他のアニメーション部分でも

              • Morf.js - CSS3 Transitions with custom easing functions

                Native These are the natively supported easing functions, built into WebKit. linear ease ease-in ease-out ease-in-out Custom These are custom easing functions (thanks to Robert Penner & Thomas Fuchs) that can produce much more interesting transitions. Generated Animation CSS Internally the custom easing function for the transition is faked using CSS animations. Here is the code that is produced on

                • jQuery Easing Plugin | エフェクト動作パターン集プラグイン

                  jQuery Easing Plugin は、jQuery のエフェクト動作パターン集のようなプラグイン。jQuery にも、linear と swing のシンプルな動作パターン( easing )は用意されているが、jQuery Easing Plugin を導入すると、30種類以上もの、変化に富んだ動作パターンを使えるようになる。 エフェクト動作パターンは、animate などで使うことが多い。(参照:animate の動作パターンの指定方法) 導入 jQuery Easing Pluginより、jquery.easing.1.3.js を、ダウンロード。「 jquery.easing.1.3.js 」ファイルを、自分のサイトのサーバーにアップロード。 使用したいページで、下記のようにして読み込む。「 jquery.easing.1.3.js 」ファイルへのパスは、アップロードした場

                  • Easing Equations

                    Math function easeInSine(x) { return 1 - Math.cos((x * Math.PI) / 2); } CSS transition: transform 0.5s cubic-bezier(0.12, 0, 0.39, 0) Math function easeOutSine(x) { return Math.sin((x * Math.PI) / 2); } CSS transition: transform 0.5s cubic-bezier(0.61, 1, 0.88, 1)

                      Easing Equations
                    • jQueryアニメーションにイージング(easing)処理をつけるプラグイン【イージング動作サンプル一覧】|BLACKFLAG

                      jQueryで要素にアニメーション動作をつけた際、単調な動きだけでなく、加速・減速など動きに強弱のついたエフェクト、イージング(easing)処理をつけることが出来ます。 jQueryのノーマル状態では、イージング処理は「linear」と「swing」の2つが用意されていますが、プラグインを使うことによってアニメーションに多種多様なイージング処理をつけることができるようになります。 そんなイージング処理を、様々なパターンで簡単につけることが出来るプラグインを2つ、イージング動作サンプルと併せて紹介してみます。 jQuery Easing Plugin[jquery.easing.js] jQuery Easing Plugin[jquery.easing.js] jQuery Easing – jQuery 日本語リファレンス もはやjQueryのイージング処理では定番のプラグイン。 プラ

                        jQueryアニメーションにイージング(easing)処理をつけるプラグイン【イージング動作サンプル一覧】|BLACKFLAG
                      • Robert Penner's Easing Functions

                        A collection of swappable functions that add flavor to motion. Visualize Easing Cheat Sheet for jQuery, CSS, SCSS Easing Function Generator Learn Tweening chapter of my book Ease Yourself Into Animation (great preso) Understanding Easing: Explaining Penner's Equations Interpolation Tricks Code JavaScript jQuery Easing Plugin CSS, SCSS, LESS ActionScript 3.0 (single class) ActionScript 3.0 (classes

                        • jQueryのエフェクトに変化を加える「jQuery Easing Plugin」の使い方と、全33種類のエフェクトサンプルを作成してみた

                          様々な効果でWebページのUIをリッチにしてくれるjQuery。 今回は、そのjQueryのエフェクト動作を加速/減速させるためのプラグイン、「jQuery Easing Plugin」の使い方と、全33種類のエフェクトサンプルを(自分用に)作ってみましたのでシェアしておきます。 「jQueryってなんじゃらほい」という方は先日書きました7つのサンプルでjQueryを学ぼう!「jQueryが全く分からない人のため」の超初級者向け入門講座をご一読ください。分かりやすいと僕の中で大評判です。 easingとは、エフェクトの動きを加速/減速させるための関数です。 (中略)特別なことをしなくても使うことの出来るeasingは”linear”と”swing”の2種類だけですが、プラグインなどを入れることで多くのeasingを利用することができます。 このeasingプラグインでは、version 1

                            jQueryのエフェクトに変化を加える「jQuery Easing Plugin」の使い方と、全33種類のエフェクトサンプルを作成してみた
                          • カスタムイージングを作成できるAIRアプリ「Easing Generator」 | ClockMaker Blog

                            FlashのActionScriptトゥイーンエンジンに利用できるカスタムイージング(加減速)編集アプリを作りました。ActionScriptでトゥイーンを作成するとテンプレートと言える「イージング関数」は数種類しかないので似たような動きになりがちです。それを解決すべく作った、動かし方を自由に編集できるツールということです。ActionScript 3.0で主要なトゥイーンエンジン各種に対応しています。 インストール方法と主な使い方は以下から。 このアプリが役立つ場面 [上:Flash Professionalのような感覚で加減速を調整できる] このアプリは主に次のような場面で役に立つと思います。 標準搭載のイージングに自分の求めている動きがなかった 始点と終点で別々のイージングを適用したい 他の人と同じイージングを使うのが嫌だ 簡単な動きであれば標準のイージングでことが足りるのですが、F

                            • CSSやJavaScriptでのEasing使用法を確認できるチートシート・Easing Functions Cheat Sheet

                              見やすかったのでメモ的に。 Easingの動作確認や実装法 などを完結に纏めてある チートシートサイトのご紹 介です。たまにしか利用し ないので覚えられない・・ Easingのチートシートです。ニッチですね・・・

                                CSSやJavaScriptでのEasing使用法を確認できるチートシート・Easing Functions Cheat Sheet
                              • easing_demo

                                • Saqoosha.net :: FuseKit の Custom Easing Tool を Tweener で使う

                                  いーそーがーしーいー。まだなんにも燃やしてない。やばい。次回てら子は創始者がくるってーのにまだ空きがあるので、時間がある人はぜひご参加をー。 ・・・ んで。タイトルのん。AS3 になってからめっきり Tweener しか使わなくなったわけですが、イージング(Tweener では transition つってるやつ)が定番のんしかなくって面白みに欠けるというか、まー、ちょっと他とは違った感じにしたくなってくるわけで。 Tweener.addTween の transition パラメータには “easeInOutCubic” とかって文字列以外にも Equations.easeOutExpo とかって感じで関数が渡せる。ので。カスタムなイージング関数を書いちゃえばいいのです。がー。表現したい動きを数式で書くなんてできなーーい。もっとビジュアルで感覚的に指定したいい。 最初に思いついたのがカス

                                    Saqoosha.net :: FuseKit の Custom Easing Tool を Tweener で使う
                                  • Tim Groleau's Easing Function Generator

                                    download source To use the generator, drag the handle points at the bottom of the movie (in orange) or enter their position manualy in the fields provided (warning: dragging may be slow). Then just copy the function for pasting and use it as you normally do (tween engine, etc.). Although each handle point modifies the curve, their are numbered to show which portion of the curve they influence the

                                    • jQuery Easing Plugin エフェクト一覧ページ

                                      ほんのり解説 <script src="jquery-1.8.2.min.js"></script> <script src="jquery.easing.1.3.js"></script> <script> $(function(){ $(".button").toggle(function(){ $(".hoge").animate({ "marginLeft":"100px"},2000,"Easingの種類") },function(){ $(".hoge").animate({ "marginLeft":"0px"},2000,"Easingの種類"); }); }); </script> headタグ内に「jquery本体」と「jquery.easing.js」を読み込むことで、"Easingの種類"の部分に記述したエフェクトを使用することが可能です。 (上記のコードは<>を半

                                      • animate(params, [duration], [easing], [callback]) - jQuery 日本語リファレンス

                                        自分で独自のアニメーション効果を作成するための関数です。 この関数でポイントになるのは、style属性の変化です。例えば”height”,”top”,”opacity”のようなstyleを、どのような値で完了させたいかを渡してやることで現在の値から変化させていきます。 ※ これらの値は、キャメルケースで表記されなければなりません。例えばmargin-leftは、marginLeftのように記述します。 例えば現在のheightが10pxで、animate関数に{height: “100px”}と渡した場合、高さが10pxから100pxに徐々に変化していく効果が得られます。これは数値のみに適用されますが、それ以外にも” hide”,”show”,”toggle”などの文字列が指定された場合にも、対応した効果を作成してくれます。 そもそも数値型の値をとらない属性(backgroundColor

                                        • GitHub - jedi4ever/veewee: Easing the building of vagrant boxes

                                          Veewee Veewee is a tool for easily (and repeatedly) building custom Vagrant base boxes, KVMs, and virtual machine images. About Vagrant Vagrant is a great tool for creating and configuring lightweight, reproducible, portable virtual machine environments - often used with the addition of automation tools such as Chef or Puppet. The first step to build a new virtual machine is to download an existin

                                            GitHub - jedi4ever/veewee: Easing the building of vagrant boxes
                                          • Easing.pde — Robert Penner氏のeasing関数をProcessingに移植しました - ここぽんのーと

                                            ビジュアルコーディングにおいて、気持ちよい動きを実現するために必須ともいえる「easing関数」。今回は、有名なRobert Penner氏のものをProcessingに移植して、勉強会のメンバーが使えるように仕上げてみました。 こういう動きが作れるようになりますものを動かす方法突然ですが、ここに丸があります。ボールです。 このボールをとにかく動かせ!と言われたとき、あなたならどう実装しますか? 例えば、毎フレーム2ピクセルずつずらしていく…みたいな感じが、最も簡単でしょうか。 void draw() { background(255); ballX += 2; ellipse(ballX, ballY, ballSize, ballSize); } コードはこんなイメージ。 動きがわかりやすいように、絵のほうは往復させています。 これは「等速直線運動」といって、ずっと同じ速さで移動する動

                                              Easing.pde — Robert Penner氏のeasing関数をProcessingに移植しました - ここぽんのーと
                                            • HashiCorp and Google expand collaboration, easing secret and infrastructure management | Google Cloud Blog

                                              HashiCorp and Google expand collaboration, easing secret and infrastructure management Open source technology encourages collaboration and innovation to address real world problems, including projects supported by Google Cloud. As part of our broad engagement with the open source community, we’ve been working with HashiCorp since 2013 to enable customers who use HashiCorp tools to make optimal use

                                                HashiCorp and Google expand collaboration, easing secret and infrastructure management | Google Cloud Blog
                                              • easingを使い倒そう | _level0 - KAYAC Front Engineer Blog

                                                いつもAS3について考えているつもりなのに数学ネタに終始していて、ホント響かないエントリーを量産し続けるtaroであります。今回お送りするネタをまとめてみました。 flashならイージングだろってことで今回はeasing関数についてのお話をしようと思います。あ。結局関数なのね。そうです! ・easing関数の使いどころ ・easing関数を合成しよう easing関数の使いどころ 今回はfl.motion.easing.*の使い方を考えてみます。 Tweenerだと、caurina.transitions.Equationsに入っている関数群、 TweenLite / TweenMaxだと、gs.easing.*にあるクラスに含まれる関数群も同じ働きをするので、 同様のtipsが使えます。 これらの関数は4つのNumber型の引数を取り、Numberを返します。 public static

                                                  easingを使い倒そう | _level0 - KAYAC Front Engineer Blog
                                                • animate(params, [duration], [easing], [callback]) - jQuery 日本語リファレンス

                                                  自分で独自のアニメーション効果を作成するための関数です。 この関数でポイントになるのは、style属性の変化です。例えば”height”,”top”,”opacity”のようなstyleを、どのような値で完了させたいかを渡してやることで現在の値から変化させていきます。 ※ これらの値は、キャメルケースで表記されなければなりません。例えばmargin-leftは、marginLeftのように記述します。 例えば現在のheightが10pxで、animate関数に{height: “100px”}と渡した場合、高さが10pxから100pxに徐々に変化していく効果が得られます。これは数値のみに適用されますが、それ以外にも” hide”,”show”,”toggle”などの文字列が指定された場合にも、対応した効果を作成してくれます。 そもそも数値型の値をとらない属性(backgroundColor

                                                  • Taming The Unicorn: Easing JavaScript Memory Profiling In Chrome DevTools

                                                    Taming The Unicorn: Easing JavaScript Memory Profiling In Chrome DevTools April 11, 2013 “The Unicorn has a special ability to help it's master when in trouble. When tamed, they will not attack humans or tamed creatures, but will attack anything else with negative karma" The DevTools Heap Profiler and Timeline Memory view can be used to diagnose memory leaks on both desktop and mobile (via remote

                                                      Taming The Unicorn: Easing JavaScript Memory Profiling In Chrome DevTools
                                                    • レスポンシブにも対応した超絶簡単フリー(無料)のWordPress用スライドショープラグイン「Easing Slider ”Lite”」 | gakuchi

                                                        レスポンシブにも対応した超絶簡単フリー(無料)のWordPress用スライドショープラグイン「Easing Slider ”Lite”」 | gakuchi
                                                      • anything from herejquery.js のアニメーションコードの解読 ( 10 ) 番外編 easing関数解読

                                                        easing 関数<解読> 解読とは大袈裟すぎるかもしれませんが、一見複雑に見える easing 関数式ですが、実は中学生程度の関数の知識があれば十分理解できるものであることを、恥ずかしながら最近納得したばかりなのです。 そこで、easing 関数が実は簡単な代数式であることを改めて整理しておこうと思います。それも中学校で倣う関数の形式に、表現し直してみます。 対象とする easing 関数は jquery.js で定義されている linear 及び swing の他、George Smith 氏による 30 種類の easing 関数です。 以下の表における大前提 数値の正規化大前提として、jquery.js における正規化を踏まえるので、easing 代数式の文字の意味は次のようになります。 t: current time :これは経過時間ですが、jquery.js においては、t を

                                                        • Simple Easing Functions in Javascript - see https://github.com/gre/bezier-easing

                                                          You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                            Simple Easing Functions in Javascript - see https://github.com/gre/bezier-easing
                                                          • jQuery UI Effects - Easing demo

                                                            All easings provided by jQuery UI are drawn above, using a HTML canvas element. Click a diagram to see the easing in action.

                                                            • 【jQuery】easing関数を作る at softelメモ

                                                              戻り値は変化率とでもいえばよいだろうか。 一番簡単な、進捗に正比例して変化する例 こんな変化をさせる場合。横軸が時間(0~1)、縦軸が値の変化。 これでよい。 jQuery.easing.myEasing = function(x, t, b, c, d) { return x; } 進捗率=変化率で、進捗0なら変化も0、進捗1(100%)なら変化も1(100%)。 最初ゆっくり、後から加速の、二次関数を使った例 こんな変化をさせる場合。物が落下するときの感じの変化。 jQuery.easing.myEasing2 = function(x, t, b, c, d) { return x * x; } あら?なんだかとても簡単そうな感じがしてきましたか? 変化のある動きをさせる例 こういうのはどうでしょう。 jQuery.easing.myEasing3 = function(x, t,

                                                                【jQuery】easing関数を作る at softelメモ
                                                              • Easing Equations

                                                                // simple linear tweening - no easing, no acceleration

                                                                • jQuery Easing Plugin のイージング関数を直接利用する方法

                                                                  jQuery Easing Plugin のイージング関数を直接利用する方法 はいどうも。ここのところ JavaScript に熱中してます。ということで今回は jQuery の Easing 関数を直接利用する方法をご紹介します。 Easing (イージング) 関数って? イージング関数とは加速・減速を数式で表したもので、滑らかなアニメーションを表現する際に使われる関数です。jQuery においては jQuery.animate() メソッドの内部で利用されています。標準では linear と swing しか用意されていませんが、jQuery Easing Plugin にて 30 種類ものイージング関数を追加することができます。それぞれの効果についてはこちらのサイトの解説が詳しいです。 そんな素敵なイージング関数ですが jQuery.animate() 以外の処理に応用できたら夢が広

                                                                  • WordPressでレスポンシブweb対応スライドショープラグイン「Easing Slider "Lite"」の設定や使い方 - ワードプレスの使い方!初心者めっちゃ入門ガイド【ハイパー】

                                                                    初心者のためにわかりやすくWordPressの導入から設定方法を解説、オススメのレンタルサーバーやビジネステンプレートもご紹介します。 こんにちはマメボーwです。 本日はWordPressでレスポンシブwebに対応したスライドショープラグイン 「Easing Slider “Lite”」の使い方や設定方法を徹底解説します。 WordPressに動きを付けたり装飾するのに欠かせないのが スライドショープラグインですが、 かなり数が多くどれを使って良いかわからないですよね^^ 私もいろいろと試してきましたが、それぞれに機能があり どれが1番とは言いにくいかもしれません^^ スライドショーって何って方は、こんな感じで表示されます。 いろいろとスライドショープラグインがある中で今回紹介しようと思うのが、 「Easing Slider “Lite”」です。 このプラグインですが、なんと今流行!?次世

                                                                      WordPressでレスポンシブweb対応スライドショープラグイン「Easing Slider "Lite"」の設定や使い方 - ワードプレスの使い方!初心者めっちゃ入門ガイド【ハイパー】
                                                                    • Easingプラグインを使ったページスクロールサンプル

                                                                      Easingプラグインを使ったページスクロールサンプル > アーカイブ > 5509 durationは400~1200が適正

                                                                      • Slick Drop down Menu with Easing Effect Using jQuery & CSS | DevSnippets

                                                                        Drop-down menus are an excellent feature because they help clean up a busy layout. When structured correctly, drop-down menus can be a great navigation tool, while still being an attractive design feature. Continuing from “DAY2: Fading Background Color With jQuery .animate()“, today we would like to take a look at another effect that we can create using the .animate() function. In this tutorial we

                                                                        • CoreAnimationでカスタムのEasing Functionを使う - Qiita

                                                                          CoraAnimationでは、timingFunctionで、Easing Functionを設定できます。これにより、やりリアルで自然なアニメーションを表現できます。 animation.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseInEaseOut)

                                                                            CoreAnimationでカスタムのEasing Functionを使う - Qiita
                                                                          • Prototype JavaScript framework: Deprecation.js: easing the 1.5 → 1.6 transition

                                                                            If you’ve put off the task of upgrading your old code to Prototype 1.6, now you’re out of excuses. Core team member Tobie Langel has developed a script that will warn you of any deprecations or API changes. The script is meant to be used with Firebug, so it’s Firefox-only — but when you’re done, your code will be ready for use alongside Prototype 1.6 in all browsers. Using the script is easy. To m

                                                                            • Easings - Generate, test and share custom easing curves.

                                                                              Test common easing curves on a range of interfaces. Or generate your own custom bezier curve. See also box-shadows.co.

                                                                                Easings - Generate, test and share custom easing curves.
                                                                              • GitHub - jhardy/compass-ceaser-easing: Penner equations for css3 transitions

                                                                                You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                                                  GitHub - jhardy/compass-ceaser-easing: Penner equations for css3 transitions
                                                                                • Tim Groleau's Easing Function Generator

                                                                                  download source To use the generator, drag the handle points at the bottom of the movie (in orange) or enter their position manualy in the fields provided (warning: dragging may be slow). Then just copy the function for pasting and use it as you normally do (tween engine, etc.). Although each handle point modifies the curve, their are numbered to show which portion of the curve they influence the