Skip to content

jquery.utility.jsはHTML、CSSコーディングを補助するjQueryのプラグインです。

Notifications You must be signed in to change notification settings

Attrise/jquery.utility

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

jquery.utility.js - jQuery plugin

目次

  1. 概要
  2. ダウンロード
  3. 機能群
  • rollOverImages
  • imgFade
  • boxSameHeight
  • anchorScroll

概要

jquery.utility.jsはHTML、CSSコーディングを補助するjQueryのプラグインです。

ダウンロード

URL:https://github.com/Attrise/jquery.utility

概要

###rollOverImages###

任意のクラス名をimg要素に付与することでマウスオーバー時の画像を切替ます。
デフォルトはマウスオーバー時にimgのsrc属性に指定された画像のファイル名を '_over' がついたもの切替ます。

####用例####

#####通常#####

$('img.swap').rollOverImages();

#####オプション#####

  • suffix:接尾辞(imgのファイル名語尾を_onのものと入れ替える場合)
$('img.swap').rollOverImages({
    suffix : '_on'
});

###imgFade###

マウスオーバー時に画像を透過します。

####用例####

#####通常#####

$('img.fade').imgFade();

#####オプション#####

  • fadeSpeed:透明状態になるまでの秒数
  • startAlpha:アルファ状態
  • endAlpha:通常時のアルファ値
$('img.fade').imgFade({
    fadeSpeed  : 500,
    startAlpha : 0.3,
    endAlpha   : 1.0
});

###boxSameHeight###

ボックスの高さ揃え

####用例####

#####通常#####

$('.SameHeight').boxSameHeight();

#####オプション#####

  • resize:(文字サイズ変更ナビ対応を行う場合は「true」を指定)
$('.SameHeight').boxSameHeight({
    resize:true
});

###anchorScroll###

ページ内リンクアニメーション(※要jquery.easing.js)

####用例####

#####通常#####

$('a[href^="#"]').anchorScroll();

#####オプション#####

  • duaration:目標座標までの時間
  • easing:アニメーションのイージング設定
$('a[href^="#"]').anchorScroll({
     duaration : 1000,
     easing : 'easeIn'
});

About

jquery.utility.jsはHTML、CSSコーディングを補助するjQueryのプラグインです。

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published