テキスト周りのスタイリングに使えるCSSプロパティやスニペット | NxWorldがいい感じだったのでざっくりCanIuseでしらべてみた。
※ 「基本問題なし」と書いているのはIE8以降/Android4.1/iOS8以降なら大体問題無いでしょうという意味です。
http://caniuse.com/#search=font-smoothing
- MacOSのFirefox/Chromeのみ
※ 「基本問題なし」と書いているのはIE8以降/Android4.1/iOS8以降なら大体問題無いでしょうという意味です。
http://caniuse.com/#search=font-smoothing
| /* | |
| * jQuery Easing v1.3.2 - http://gsgd.co.uk/sandbox/jquery/easing/ | |
| * Open source under the BSD License. | |
| * Copyright © 2008 George McGinley Smith | |
| * All rights reserved. | |
| * https://raw.github.com/gdsmith/jquery-easing/master/LICENSE | |
| */ | |
| // Edit by Masayuki Maekawa ( https://github.com/maepon ) |
| // admin/make-form.phpの最後にscriptタグで追加 | |
| (function($){ | |
| var $box = $('#standard-form'), | |
| boxBaseOffsetY = $box.offset().top; | |
| $box.css({ | |
| position: 'absolute', | |
| left:0, |
So you've become comfortable with jQuery and would like to learn how to write your own plugins. Great! You're in the right spot. Extending jQuery with plugins and methods is very powerful and can save you and your peers a lot of development time by abstracting your most clever functions into plugins. This post will outline the basics, best practices, and common pitfalls to watch out for as you begin writing your plugin.
jQueryを使うことが快適になってきたら、プラグインの作り方を知りたくなるでしょう。それは正解です!プラグインとメソッドでjQueryを利用することは、非常に協力で、さらに、プラグインの中に最も有効な機能を抽象化することで、開発にかける時間を大幅に節約出来ます。この記事は、プラグインを書き始める際の基本的な概要とベストプラクティス、さらに気をつける必要のある一般的な落とし穴についての記事です。
| <h2 id="examples">Examples</h2> | |
| <p> | |
| The list of examples that follows, while long, is not exhaustive. If you've | |
| worked on an app that uses Backbone, please add it to the | |
| <a href="https://github.com/documentcloud/backbone/wiki/Projects-and-Companies-using-Backbone">wiki page of Backbone apps</a>. | |
| </p> | |
| <p id="examples-todos"> | |
| <a href="http://jgn.me/">Jérôme Gravel-Niquet</a> has contributed a |