タグ

2011年2月26日のブックマーク (7件)

  • 第17回 アニメーションの基礎 | gihyo.jp

    こんにちは、太田です。3回ほどJavaScriptの基礎的な内容が続いたので、今回はグラフィカルなアニメーションについて解説します。グラフィカルなJavaScriptというと、難しい・応用的なイメージがあるかもしれませんが、JavaScriptでのアニメーションとはすなわちCSSを段階的に操作するということで、そのポイントを抑えれば中身は単純なものです。 アニメーションの前提知識 HTMLにおける通常のアニメーションを構成するのは、「⁠特定の要素」に対して、「⁠そのCSSプロパティ」を「ある時点からある時点まで」の時間の中で、「⁠ある値からある値に操作」する、といった要素です。 特定の要素と、CSSプロパティについては問題ないと思います。問題となるのは「時間と値の操作」です。 まず、単純にインクリメントするだけというサンプルを見てみましょう。 良くないアニメーション var y = 0;

    第17回 アニメーションの基礎 | gihyo.jp
    yat8823jp
    yat8823jp 2011/02/26
    アニメーションライブラリ
  • 正規表現 - SMART 開発者のためのウェブマガジン

    正規表現の概要 正規表現は、Perlの中で最も重宝する機能のひとつです。正規表現にはテキスト処理のための様々な機能があり、文字列の中から特定のパターンを見つけ出したり、置換したりすることができます。 正規表現の基的な使用方法 たとえば、$strという変数に格納したデータの中から、「A」で始まって途中は何があるかわからないが最後が「E」という文字列を探したい場合、次のように記述することで、条件にマッチする文字列を見つけることができます。 $str =~ /A.*E/; 上記では、ドット( . )が改行以外の1文字を表し、アスタリスク( * )がその任意の文字の0回以上の繰り返しを意味します。このように、正規表現において特殊な働きを持った文字を正規表現演算子、またはメタ文字と呼びます。また、=~ はパターン結合演算子と呼ばれ、「左辺の値から右辺の値を検索する」という意味があります。 正規表現

    正規表現 - SMART 開発者のためのウェブマガジン
  • JavaScript講座 15章 JavaScriptでの正規表現

    Blog Post Featured post Industrial Vs Non Industrial Plasma Cutting Machines Continue reading Points to Note When Shopping for a Washing Machine There are different washing machines brands in New Zealand. When shopping, therefore, you need to ensure that first, you get a quality machine; a machine that will last through many years without breaking down. You check product warranties and reviews whe

  • gkbr.me

    このドメインを購入する。 gkbr.me 2018 Copyright. All Rights Reserved. The Sponsored Listings displayed above are served automatically by a third party. Neither the service provider nor the domain owner maintain any relationship with the advertisers. In case of trademark issues please contact the domain owner directly (contact information can be found in whois). Privacy Policy

    yat8823jp
    yat8823jp 2011/02/26
    共有
  • http://e0166nt.com/blog-entry-855.html

    http://e0166nt.com/blog-entry-855.html
  • Impressive Typography Sites - noupe

    Typography is one of the very important aspects to consider when designing a website. Well-written content finds its actual place and praise only then when it is placed properly in readable and as well as attractive format. Web typography can embrace everything from calligraphy to digital type — it is not only about using an array of fonts, but also focusing on the 'where' and 'why' when choosing

    Impressive Typography Sites - noupe
  • フォームに入力ヒントを与えるjQuery |https://wp.yat-net.com/name

    入力フォームに何を入力するかのヒントを表示させておき、マウスカーソルをフォーカスすると同時に文字を消すjQueryです。ソースも長くなく単純なのですぐに採用でき、ユーザービリティの向上を図れます。ただし、ヒントに記述する文面は良く考えておかないとユーザーに要らぬ想像を与えてしまう場合もありますので、ヒント程度の物にしておくことが最善と思います。 JSファイル $(document).ready(function() { $(“input.input-hint”).val(“検索キーワードを入力してください”); textFill($(‘input.input-hint’)); }); function textFill(input){ //input focus text function var originalvalue = input.val(); input.focus( func

    フォームに入力ヒントを与えるjQuery |https://wp.yat-net.com/name