タグ

関連タグで絞り込む (2)

タグの絞り込みを解除

jQueryに関するminodiskのブックマーク (16)

  • jQuery.cssHooks | jQuery API Documentation

    Description: Hook directly into jQuery to override how particular CSS properties are retrieved or set, normalize CSS property naming, or create custom properties. version added: 1.4.3jQuery.cssHooks The $.cssHooks object provides a way to define functions for getting and setting particular CSS values. It can also be used to create new cssHooks for normalizing CSS3 features such as box shadows and

    minodisk
    minodisk 2011/02/24
    cssHooks リファレンス
  • 萌え萌えCSS

    rti (@super_rti) メール (super_rti あっとまーく gmail.com) 注意:このプレゼンはネタです。ジョークのわかる人しか見ないでください。 自己紹介 ハンドル:rti 肩書き:シーランド公国伯爵 設計から運用までのなんでも屋さん ソフトウェアの研究がしたいんだけど。。。オファーとかないw だれが作っても同じ結果になるコーディングに意味はあるんでしょうか。 自己紹介 代表作 新潟アクセス修飾子(php) 数式を一切使わないSVMの話(機械学習) とある関数の接合部 SEXYHOOK!(C++/アセンブラ) クロスブラウザな回転(javascript) ことさが(Mashup Award4 livedoor/recruit賞)

    minodisk
    minodisk 2011/02/21
    cssHooksの説明で分かりやすいが人に紹介できない諸刃資料。
  • jQuery 1.5の新機能: jQueryのサブクラスが作れるようになる | へびにっき

    jQuery 1.5 beta1 のリリースノートを見ていたら面白そうな機能があったので紹介。 jQuery.subclass() でjQueryのサブクラスを作ることができる var MyjQuery = jQuery.subclass(); 作成したサブクラスには独自のメソッドを定義することができる。定義の仕方、使い方は通常のjQueryと全く同じ。 MyjQuery.fn.writeHello = function(){ this.text('Hello World'); }; MyjQuery('p').writeHello(); 通常のjQueryメソッドはサブクラスでもそのまま使える。サブクラスを作った後に追加したメソッドも使えるので、プラグインによる拡張と組み合わせても大丈夫。 MyjQuery('div').css('border', '1px red solid').wr

    minodisk
    minodisk 2011/01/18
    サブクラス
  • JavaScript Style Guide | Contribute to jQuery

    If the project supports browsers which do not implement ES5, then the es3 option must be included with the repo-specific options. link SpacingIn general, the jQuery style guide encourages liberal spacing for improved human readability. The minification process creates a file that is optimized for browsers to read and process. Indentation with tabs. No whitespace at the end of line or on blank line

    minodisk
    minodisk 2011/01/07
    コーディング規約
  • Plugins | jQuery Learning Center

    A jQuery plugin is simply a new method that we use to extend jQuery's prototype object. By extending the prototype object you enable all jQuery objects to inherit any methods that you add. As established, whenever you call jQuery() you're creating a new jQuery object, with all of jQuery's methods inherited. The idea of a plugin is to do something with a collection of elements. You could consider e

    minodisk
    minodisk 2011/01/07
    公式のプラグインの作り方
  • jQuery ソースコードを読むための参考資料一覧 - mollifier delta blog

    2010/09/26(日) に京都で Kanasan.JS jQuery コードリーディング #2 が行われる(告知ページ)。みんなで jQuery のソースコードを読むイベントで、今回が2回目だ。参加者募集中です。 jQuery はファイル1つだけのライブラリなのですごい環境とかもってなくても大丈夫なんだけど、読むうえで参考になるサイトとかをまとめてみた。この辺の準備をしておくと理解が深まると思う。 ソースコード http://code.jquery.com/jquery-1.4.2.js http://github.com/jquery/jquery まずは jQuery のソースコードを取ってこないと始まらない。今回はバージョン 1.4.2 を使用する。jQuery の公式サイトから圧縮していないコードをダウンロードしよう。 それと、jQuery ソースコードは Git で管理されて

    jQuery ソースコードを読むための参考資料一覧 - mollifier delta blog
    minodisk
    minodisk 2011/01/07
    ドキュメントまとめ
  • Plugins | jQuery Plugins

    Can't find a Plugin you are looking for? Check out the jQuery Wiki page. Are you a plugin developer? Please move your plugin over to this site.

    minodisk
    minodisk 2011/01/06
    ColorKeywordsでのアニメーションをサポート。hsl・alpha・相対値でのアニメーションは未サポート。アニメーションはrgbベース。
  • citizenColor, add HSL color animations to jQuery. | jQuery Plugins

    minodisk
    minodisk 2011/01/06
    IEでhslをサポート、ColorKeywords・相対値でのアニメーションをサポート。alphaは未サポート。アニメーションはrgbベース。
  • jQuery.iColor - jQueryPlugin DEMO

    backgroundColor: { 'h': '+=1080', 's': '-=0.3', 'mode': 'HSV' } // ※alpha値はIEでは動作しません backgroundColor: 'rgba(255,255,0,0)', borderTopColor: 'lightblue', borderBottomColor: 'lightblue', borderLeftColor: 'lightblue', borderRightColor: 'lightblue'

    minodisk
    minodisk 2011/01/06
    IEでhslをサポート、ColorKeywords・相対値でのアニメーションをサポート。alphaは未サポート。アニメーションはdestinationをhslで指定しない限りはrgbベース。
  • jQueryを使い始めたときに感じる13の疑問 : tech.kayac.com - KAYAC engineers' blog

    来週は私が夏休みなので更新はない予定です。agoです。 最近、人にjQueryを解説する機会があったので、昔を思い出してjQueryを使い始めた頃に感じる疑問を書いてみたいと思います。 1 そもそも何で使うの?いまでも困ってないよ 作成する内容にもよりますが、慣れると使用しない場合に比べて記述するコード量が3分の1程度まで減ります。 また、変数、条件分岐、繰り返しが減るのでバグが発生しにくくなります。 2 何か特殊なことができる? 結局できることは変わりません。 jQuery自体JSで書かれてますし、記述の自由度もJSの制約に制限されます。 3 何が難しいの? 文法がややjQuery的になります。 参考 jQuery言語入門 jQuery自体のコード量は少ないのですが、独特の記述法が多く慣れるまで多少時間がかかるかもしれません。 また、CSS Selectorの知識はほぼ必須です。 特にマ

    jQueryを使い始めたときに感じる13の疑問 : tech.kayac.com - KAYAC engineers' blog
    minodisk
    minodisk 2010/12/30
    なんか聞かれたらこれを渡す
  • jQuery Address - Deep linking for the masses

    The jQuery Address plugin provides powerful deep linking capabilities and allows the creation of unique virtual addresses that can point to a website section or an application state. It enables a number of important capabilities including: Bookmarking in a browser or social website Sending links via email or instant messenger Finding specific content using the major search engines Utilizing browse

  • cssHooks in jQuery 1.4.3

    jQuery 1.4.3 brought us a complete rewrite of the CSS module. The main focus of this rewrite was to add extensibility. Along with some nice speed-ups in getting styles, the CSS module of jQuery now let you extend the functionality of .css() and .animate().  It allows this by adding cssHooks. cssHooks allow you to “hook” in to how jQuery gets and sets css properties.  This means that you could crea

    minodisk
    minodisk 2010/12/18
    cssHooksの拡張方法。setはstyleに反映する際に呼ばれるのでどこにどのような形で反映するかを拡張することができる。getもそれに合わせて拡張。animate時にも$.fx.stepでsetを呼ぶように拡張。
  • 高速な CSS セレクタエンジン「Sizzle」「Peppy」を試す - WebOS Goodies

    最近のほとんどの JavaScript フレームワークには、 CSS セレクタによる DOM エレメントの取得機能が実装されています。複数の要素を柔軟な条件で取得できるので、 DOM ツリーの操作がシンプルに記述でき、とても便利です。しかし、単に CSS セレクタを使いたいだけなのに、フル機能のフレームワークを読み込むのはちょっと抵抗がありますよね。 そんな悩みを解決してくれるのが、日ご紹介する Sizzle, Peppy という 2 つのライブラリです。これらは他のフレームワークに依存しない独立した CSS セレクタエンジンで、しかも jQuery 等の既存のエンジンより数倍高速に動作します。 unobtrusive な Web ウィジェットの開発や、独自フレームワークの開発に最適ですね。その他にも広範な用途に使えるでしょう。 以下でこれらのライブラリの使い方や動作速度等の検証結果を掲

    minodisk
    minodisk 2010/12/07
    jQueryにも使われてるSizzleエンジン
  • jQuery.upload: A simple ajax file upload plugin

    See related links to what you are looking for.

    minodisk
    minodisk 2010/10/22
    非同期アップロード。複数ファイルアップロードや、ファイル以外の値の送信も可。
  • Mediasoft | make it fly

    Mediasoft. Versnelde digitale groei voor ambitieuze bedrijven Bedrijven met een sterke visie die de waarde van digitalisatie kennen en de nood hebben om klein te starten, wijzen we met Mediasoft via gerichte digitale innovatie de weg richting een stevige groei.

    minodisk
    minodisk 2010/10/21
    部分リフレッシュがこんなに簡単に!と思ったら、n箇所をリフレッシュする為にはページ丸ごと*n回のリクエストが発生する。当然。このサンプルみたく、1箇所を任意間隔でリフレッシュする使用方法なら許容範囲か。
  • Build and implement a single sign-on solution

    IBM Developer is your one-stop location for getting hands-on training and learning in-demand skills on relevant technologies such as generative AI, data science, AI, and open source.

    Build and implement a single sign-on solution
    minodisk
    minodisk 2010/10/21
    プラグイン作成。
  • 1