jQuery応用

1. アニメーション


jQueryプラグイン
jQueryプラグイン

2. jQuery-uiを使う

doctype html
meta charset="utf-8"
link rel="stylesheet" href="http://code.jquery.com/ui/1.12.1/themes/pepper-grinder/jquery-ui.css"
script src="https://code.jquery.com/jquery-3.1.1.min.js"
/ not slim
script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"
/  参考URL http://www.buildinsider.net/web/jqueryuiref/0023
h2 jQuery-uiでtooltip
p 以下のリンクにマウスカーソルを置いてみて下さい。
p#popup.
  a href="#" title="こうやって小さな窓がポップアップします" このあたり
  にツールチップが仕組まれてます
javascript:
  $('#popup').tooltip()

=> slimソース : HTML版

tooltip関数
tooltip関数