twitter facebook hatena google pocket タブメニューとはその名の通りタブを利用したメニューです。 それゆえ、デザインの種類はあまり多くなく飽きられやすくなります。 Fancy Sliding Tab Menuでは、従来とはひと味変わった華麗なタブメニューを作成できます。 sponsors 使用方法 Fancy Sliding Tab Menuからtabslide.jsをprototypeからporotype.js、script.acu.lousからeffects.jsをダウンロードします。 なおサンプルのCSSで使用している画像はこちらからダウンロードしてください。 aston.jpg、tab-left-active.gif、tab-left.gif、tab-right.gif <link rel="stylesheet" href="http://yo
▲ Browsing MENU Archives 2020年03月 (1)2019年09月 (1)2019年02月 (1)2018年12月 (1)2018年09月 (2)2018年06月 (1)2018年05月 (1)2017年03月 (2)2017年01月 (1)2016年12月 (1)2016年06月 (1)2016年04月 (1)2015年09月 (1)2015年06月 (2)2014年05月 (1)2014年03月 (1)2014年01月 (1)2013年09月 (1)2013年07月 (1)2013年06月 (2)2013年01月 (1)2012年12月 (1)2012年11月 (2)2012年10月 (1)2012年08月 (1)2012年06月 (1)2012年05月 (1)2012年03月 (2)2012年02月 (2)2012年01月 (2)2011年12月 (1)201
jMediaは、FlashやQuickTimeなどのプラグインを必要とするファイルを簡単に設置することができるjQueryのプラグインです。 jQueryのプラグインは、下記ページでもエントリーしています。 jQueryのプラグイン33+1選 jMedia jMediaは、単にプラグインファイルの設置だけではなく、IEのActiveXへの対応やプラグインの探知機能も備えています。 また、設置には下記の3つのモードが利用できます。 プラグインが無い場合、代替コンテンツを表示するモード。 [demo] クリックして、はじめてプラグインコンテンツを表示するモード。 [demo] 印刷時に、印刷用の代替コンテンツを表示するモード。 [demo] jMediaで設置可能なファイル Flash (.swf) QuickTime (.mov) Real Media (.ram, .rm) Windows
57 11 09 2007 トレーニングAjax入門3 jQueryプラグインを読み込ませる方法 jQuery, Ajax 無数にあるjQery plugin読み込んでAjaxな機能を簡単に扱う方法 jQery.js+プラグイン.jsを読み込ませて実際に動作するまでを紹介。 これさえ理解すればjavascriptがわからなくてもほとんどのAjaxな機能が利用できるようになります。 jquery.js - ダウンロードページかならず必要ですのでダウンロードして下さい jQueryプラグイン公式 - 100以上のプラグインが用意されています。 それでは上記の公式から、比較的簡単なプラグインを読み込ませて動作させる例をあげてみようと思います。 jQueryプラグインpage-scroller.jsでスムーズに動作するページスクロール これは自分の知っている限りでは超高機能かつ超軽量
jQuery 1.1.4を先日公開となったばかりですが、jQuery 1.2がリリースされました。 Release:jQuery 1.2 追記: jQueryのブログも更新されました。 jQuery 1.2: jQuery.extend(”Awesome”) jQuery 1.2の変更点やアップグレードの仕方を下記にピックアップしました。 jQuery 1.2のアップデート内容 jQuery 1.2へのアップデートの仕方 jQuery 1.2用のプラグイン jQuery 1.2で削除されたもの jQuery 1.2のアップデート内容 Selectors :has(selector) :header :animated XPath Selector Plugin Attributes .val() Overhaul Traversing .map() .prevAll() / .nextAl
AJAXを簡単に使用でき、しかもいろいろな効果を追加できるJavaScriptライブラリ「jQuery」の機能をさらに拡張できるプラグインとして開発されており、実際にブラウザでページをスクロールダウンするまでは画像の読み込みを行わないようにできます。つまり、転送量や負荷を抑えてサーバにやさしい仕組みが実現できるというわけ。特に1ページに大量かつ大容量の画像をばしばしページに貼り付けまくっている場合には効果が絶大です。 詳細や実際の効果を体感できるデモページは以下から。 以下がデモページ。スクロールダウンするまで画像は読み込まれません。ON/OFFも可能。 Lazy Load Enabled プラグインは以下のサイトからダウンロードできます。 Lazy Load Plugin for jQuery Safariではうまく動いてくれないようですが、それ以外のブラウザでは順調に動いてくれるようで
29 06 09 2007 トレーニングAjax入門2 jQueryでフォントサイズを変更する jQuery, Ajax よくある動的に文字サイズを変更するコードをJavascript JQueryで書いてみました。 昨日の記事jQueryでcookieを超簡単に扱える事がわかったので、 早速、汎用性の高そうなコードを書いてみました。 コード <script type="text/javascript" src="jquery.js"></script> <script language="javascript" src="jquery.cookie.js"></script> <script type="text/javascript"> <!-- $(function(){ $("p").css("font-size",$.cookie('fsize'));
FastFind MenuはjQueryのプラグインで、ページにクィックナビゲーションを設置できるスクリプトです。 FastFind Menu Script 上記のデモ ページの上部にある「[ Toggle Menu ] 」をクリックすると、クィックナビゲーションが表示され、ナビゲーションパネルはドラッグ&ドロップで移動することができます。 また、ナビゲーションの項目は、サーバーから取得し表示することも可能です。
28 05 09 2007 javascriptライブラリjQueryでcookieを超簡単に扱う方法 jQuery, Ajax javascriptでcookieを扱うのって結構めんどくさかったりしたのですが、これは超シンプル <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="jquery.cookie.js"></script> <!--head内▲--> <script type="text/javascript"> <!-- $.cookie('cookiename','data',{ expires: 7 });//書き込み{保存days} document.write($.cookie('cookiename'));//
jQuery timers is an attempt to combine jQuery's concise chaining programming style with the awkward style in which timed events are coded in JavaScript to produce a friendlier and more intuitive timed event system. In addition, it fixes the most prevalent issue with the various event systems of JavaScript: misconfigured scope. All the methods you design to use in setTimeout/setInterval in JavaScri
Script: $(function() { $('#main h1,#main h2').media(function(el, options) { options.caption = false; options.height = /h1/i.test(el.tagName) ? 75 : 45; options.src = 'itc_century.swf'; options.flashvars.txt = $(el).text(); options.bgColor = '#ffffcc'; }); }); Markup: <script type="text/javascript" src="jquery-1.2.3.js"></script> <script type="text/javascript" src="http://github.com/malsup/media/ra
This domain has been purchased and parked by a customer of Loopia. Use LoopiaWHOIS to view the domain holder's public information. Are you the owner of the domain and want to get started? Login to Loopia Customer zone and actualize your plan. Register domains at Loopia Protect your company name, brands and ideas as domains at one of the largest domain providers in Scandinavia. Search available dom
jQuery.preloadImages = function() { for(var i = 0; i<arguments.length; i++) { jQuery("<img>").attr("src", arguments[i]); } } Usage Example <script type="text/javascript"> // preload images first (can run before page is fully loaded) $.preloadImages("over.png", "out.gif"); $( function() { // do something when page is ready $("a.foo img").hover( function() { this.src = "over.png"; } , function() { t
Author Dave Cardwell (jQuery plugins) Synopsis jQMinMax is a jQuery plugin that adds support for min-width, max-width, min-height and max-height where they are not natively supported. This page describes version 0.1. Usage Automatic jQMinMax automatically adds min/max support to those elements that require it on $(document).ready(). $('#foo').minmax(); This method checks to see whether the element
2007-07-16 Delay Plugin for jQuery 1.1.2 メソッドチェーンの中で、指定した関数をその場で実行せず、遅延して後回しにできる jQuery プラグインです。jQuery の操作を後でまとめて実行したり、一定の間隔でステップ実行できるので、その特性を活かした様々な応用が期待できます。 後回しにする関数は delay メソッドで指定します。このとき、指定した関数はキューに追加するだけで、その関数は実行しません。delay メソッドで繰り返し関数を指定して、後回しにする関数をどんどん追加していきます。 後回しにする関数は $.resume メソッドで実行します。$.resume メソッドの引数には実行間隔が指定でき、その実行間隔の周期で、キューの中の関数を先頭から1つずつ順番に実行します。実行間隔はミリ秒の単位で指定します。省略したときは 10 ミリ秒です。な
2007-07-15 I needed a lightweight JavaScript feed parser based on jQuery and couldn't find one, so I wrote jFeed yesterday. Thanks to jQuery, it was quite easy and fun to do. jFeed currently parses RSS 0.91, 0.92, 1.0, 2.0 and Atom 1.0 feeds. Usage: jQuery.getFeed(options); options: * url: the feed URL (required). * data: data to be sent to the server. See jQuery.ajax data property. * success: a f
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く