About
The Plugin
jRumble is a jQuery plugin that rumbles, vibrates, shakes, and rotates any element you choose. It's great to use as a hover effect or a way to direct attention to an element.
2016-11-04 Update
This project is no longer being developed or maintained. I recommend using the the CSS version, CSSShake by @elrumordelaluz. It performs a lot better and has tons of options.
Please read this before using jRumble. Flashing and flickering objects on the web can be dangerous. Please use this plugin responsibly.
Usage
Include jQuery and jRumble
Include jQuery and jRumble just before your closing body tag. Make sure the paths to your files are correct. I recommend including via Google Libraries API.
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.jrumble.1.3.js"></script>
Initialize jRumble on a Selector and Trigger Start or Stop
You can do this in a script tag within your HTML or in an external JavaScript file.
// Initialize jRumble on Selector
$('#rumble-element').jrumble();
// Start rumble on element
$('#rumble-element').trigger('startRumble');
// Stop rumble on element
$('#rumble-element').trigger('stopRumble');
Demos
Ranges
x: 2
y: 2
rotation: 1
x: 10
y: 10
rotation: 4
x: 4
y: 0
rotation: 0
x: 0
y: 0
rotation: 5
// Demo 1
$('#demo1').jrumble({
x: 2,
y: 2,
rotation: 1
});
// Demo 2
$('#demo2').jrumble({
x: 10,
y: 10,
rotation: 4
});
// Demo 3
$('#demo3').jrumble({
x: 4,
y: 0,
rotation: 0
});
// Demo 4
$('#demo4').jrumble({
x: 0,
y: 0,
rotation: 5
});
$('#demo1, #demo2, #demo3, #demo4').hover(function(){
$(this).trigger('startRumble');
}, function(){
$(this).trigger('stopRumble');
});
Speeds
speed: 0
speed: 50
speed: 100
speed: 200
// Demo 5
$('#demo5').jrumble({
speed: 0
});
// Demo 6
$('#demo6').jrumble({
speed: 50
});
// Demo 7
$('#demo7').jrumble({
speed: 100
});
// Demo 8
$('#demo8').jrumble({
speed: 200
});
$('#demo5, #demo6, #demo7, #demo8').hover(function(){
$(this).trigger('startRumble');
}, function(){
$(this).trigger('stopRumble');
});
Opacity
opacity: true
opacityMin: .75
opacityMin: .1
Caffeinated
// Demo 9
$('#demo9').jrumble({
opacity: true
});
// Demo 10
$('#demo10').jrumble({
opacity: true,
opacityMin: .75
});
// Demo 11
$('#demo11').jrumble({
opacity: true,
opacityMin: .1
});
// Demo 12
$('#demo12').jrumble({
x: 6,
y: 6,
rotation: 6,
speed: 5,
opacity: true,
opacityMin: .05
});
$('#demo9, #demo10, #demo11, #demo12').hover(function(){
$(this).trigger('startRumble');
}, function(){
$(this).trigger('stopRumble');
});
Trigger Examples
Hover
Click
Mousedown
Constant
Remote
Remote
Timed (Click)
Pulse
$('#demo13, #demo14, #demo15, #demo16, #demo17, #demo18, #demo19, #demo20').jrumble();
// Demo 13
$('#demo13').hover(function(){
$(this).trigger('startRumble');
}, function(){
$(this).trigger('stopRumble');
});
// Demo 14
$('#demo14').toggle(function(){
$(this).trigger('startRumble');
}, function(){
$(this).trigger('stopRumble');
});
// Demo 15
$('#demo15').bind({
'mousedown': function(){
$(this).trigger('startRumble');
},
'mouseup': function(){
$(this).trigger('stopRumble');
}
});
// Demo 16
$('#demo16').trigger('startRumble');
// Demo 17
$('#demo17').hover(function(){
$('#demo18').trigger('startRumble');
}, function(){
$('#demo18').trigger('stopRumble');
});
// Demo 18
$('#demo18').hover(function(){
$('#demo17').trigger('startRumble');
}, function(){
$('#demo17').trigger('stopRumble');
});
// Demo 19
var demoTimeout;
$('#demo19').click(function(){
$this = $(this);
clearTimeout(demoTimeout);
$this.trigger('startRumble');
demoTimeout = setTimeout(function(){$this.trigger('stopRumble');}, 1500)
});
// Demo 20
var demoStart = function(){
$('#demo20').trigger('startRumble');
setTimeout(demoStop, 300);
};
var demoStop = function(){
$('#demo20').trigger('stopRumble');
setTimeout(demoStart, 300);
};
demoStart();
Documentation
Options/Defaults
Option | Default | Description |
---|---|---|
x | 2 | Set the horizontal rumble range (pixels) |
y | 2 | Set the vertical rumble range (pixels) |
rotation | 1 | Set the rotation range (degrees) |
speed | 15 | Set the speed/frequency in milliseconds between rumble movements (lower number = faster) |
opacity | false | Activate opacity flickering while rumbling |
opacityMin | .5 | When the opacity option is set to true, this controls the minimum opacity while flickering |
Known Issues
- For rumble elements that are position fixed/absolute, they should instead be wrapped in an element that is fixed/absolute
- Rotation does not work in Internet Explorer 8 and below
Changelog
v1.3 - December 3, 2011
- Internet Explorer filter typo fix ("apha" changed to "alpha")
v1.2 - October 23, 2011
- Plugin reworked to provide greater flexibility and easier binding
- Rumble is now activated with trigger('startRumble') and deactivated with trigger('stopRumble')
- Added an opacity flicker option
- IE speed 0 bug fixed
- IE9+ rotation now supported
- Removed rumbleEvent option
- Removed fixed/absolute positioning options, jRumble element requires wrapped div that is positioned properly
- Compressed code size went from 3.8kb to 1.6kb
v1.1 - March 30, 2011
- Fixed error that occured each time jRumble was triggered - Thanks to tornography for finding this
- Hover bug fixed with release of jQuery 1.5.2 (1.5.1 was leaving hover state in the "on" position)
v1.0 - March 30, 2011