michaelfox + plugin 201
Curtain.js
february 2012 by michaelfox
This plugin allows you to create a web page with multiple fixed panels that unroll with an amusing effect. Exactly like a curtain rises.
To navigate, you can use your keyboard instead the scrollbar or your mousewheel to navigate into the document. But that's not all, there is more features! For example, you can easily add a fixed element or multiple "steps" element into a pannel.
I created this plugin for the upcoming website of my friend Etienne. And I decided to deliver this one as an open source project. I would like you to note that the transition effect between two panels is extensively inspired by Edits Quarterly We were also such inspired by the following websites:
http://www.interviewmagazine.com
http://dbworks.pro
http://www.deuxhuithuit.com/en
http://madebygrave.com
http://www.boston.com/bigpicture
plugin
animation
jquery
javascript
To navigate, you can use your keyboard instead the scrollbar or your mousewheel to navigate into the document. But that's not all, there is more features! For example, you can easily add a fixed element or multiple "steps" element into a pannel.
I created this plugin for the upcoming website of my friend Etienne. And I decided to deliver this one as an open source project. I would like you to note that the transition effect between two panels is extensively inspired by Edits Quarterly We were also such inspired by the following websites:
http://www.interviewmagazine.com
http://dbworks.pro
http://www.deuxhuithuit.com/en
http://madebygrave.com
http://www.boston.com/bigpicture
february 2012 by michaelfox
jQuery Tag-it!
january 2012 by michaelfox
Simple and configurable tag editing widget with autocomplete support.
Source Bugs Docs Download
Source code is available at Github.
Actual jQuery UI widget.
The widget can be styled using Themeroller or any premade jQuery UI theme.
Degrades gracefully for browsers without JavaScript (see example).
javascript
jquery
plugin
tagging
tags
form
control
element
input
widget
jqueryui
autocomplete
Source Bugs Docs Download
Source code is available at Github.
Actual jQuery UI widget.
The widget can be styled using Themeroller or any premade jQuery UI theme.
Degrades gracefully for browsers without JavaScript (see example).
january 2012 by michaelfox
taitems/jQuery.Gantt - GitHub
december 2011 by michaelfox
jQuery Gantt Chart is a simple chart that implements gantt functionality as
a jQuery component.
It's able to:
- Read json data
- Paging results
- Display different colours for each task
- Display short description as hints
- Mark holidays
* [Demo](http://taitems.github.com/jQuery.Gantt/)
* jQuery Gantt Chart - http://mbielanczuk.com/?p=34
jquery
github
gantt
plugin
ui
interface
a jQuery component.
It's able to:
- Read json data
- Paging results
- Display different colours for each task
- Display short description as hints
- Mark holidays
* [Demo](http://taitems.github.com/jQuery.Gantt/)
* jQuery Gantt Chart - http://mbielanczuk.com/?p=34
december 2011 by michaelfox
DropKick - a jQuery plugin for beautiful dropdowns
october 2011 by michaelfox
Creating custom dropdowns is usually a tedious process that requires a ton of extra setup time. Oftentimes lacking conveniences that native dropdowns have such as keyboard navigation. DropKick removes the tedium and lets you focus on making s@#t look good.
library
dropdown
plugin
jquery
select
form
elements
october 2011 by michaelfox
KeyStroke - solusHex
october 2011 by michaelfox
KeyStroke is a Safari extension that provides customizable keyboard shorcuts for common tasks and enhancements
keyboard
safari
extensions
shortcuts
plugin
october 2011 by michaelfox
CKEditor insert html plugin
june 2011 by michaelfox
CKEDITOR.plugins.add( 'tokens',
{
requires : ['richcombo'], //, 'styles' ],
init : function( editor )
{
var config = editor.config,
lang = editor.lang.format;
// Gets the list of tags from the settings.
var tags = []; //new Array();
//this.add('value', 'drop_text', 'drop_label');
tags[0]=["[contact_name]", "Name", "Name"];
tags[1]=["[contact_email]", "email", "email"];
tags[2]=["[contact_user_name]", "User name", "User name"];
// Create style objects for all defined styles.
editor.ui.addRichCombo( 'tokens',
{
label : "Insert tokens",
title :"Insert tokens",
voiceLabel : "Insert tokens",
className : 'cke_format',
multiSelect : false,
panel :
{
css : [ config.contentsCss, CKEDITOR.getUrl( editor.skinPath + 'editor.css' ) ],
voiceLabel : lang.panelVoiceLabel
},
init : function()
{
this.startGroup( "Tokens" );
//this.add('value', 'drop_text', 'drop_label');
for (var this_tag in tags){
this.add(tags[this_tag][0], tags[this_tag][1], tags[this_tag][2]);
}
},
onClick : function( value )
{
editor.focus();
editor.fire( 'saveSnapshot' );
editor.insertHtml(value);
editor.fire( 'saveSnapshot' );
}
});
}
});
plugin
ckeditor
wysiwyg
{
requires : ['richcombo'], //, 'styles' ],
init : function( editor )
{
var config = editor.config,
lang = editor.lang.format;
// Gets the list of tags from the settings.
var tags = []; //new Array();
//this.add('value', 'drop_text', 'drop_label');
tags[0]=["[contact_name]", "Name", "Name"];
tags[1]=["[contact_email]", "email", "email"];
tags[2]=["[contact_user_name]", "User name", "User name"];
// Create style objects for all defined styles.
editor.ui.addRichCombo( 'tokens',
{
label : "Insert tokens",
title :"Insert tokens",
voiceLabel : "Insert tokens",
className : 'cke_format',
multiSelect : false,
panel :
{
css : [ config.contentsCss, CKEDITOR.getUrl( editor.skinPath + 'editor.css' ) ],
voiceLabel : lang.panelVoiceLabel
},
init : function()
{
this.startGroup( "Tokens" );
//this.add('value', 'drop_text', 'drop_label');
for (var this_tag in tags){
this.add(tags[this_tag][0], tags[this_tag][1], tags[this_tag][2]);
}
},
onClick : function( value )
{
editor.focus();
editor.fire( 'saveSnapshot' );
editor.insertHtml(value);
editor.fire( 'saveSnapshot' );
}
});
}
});
june 2011 by michaelfox
Tabs in Textarea Plugin for Javascript jQuery
june 2011 by michaelfox
Tabs in Textarea Plugin for Javascript jQuery
concept
This is a demo of the "Tabby" Javascript jQuery plugin to use tabs in regular textareas to make them suitable for in-browser coding of languages like HTML, CSS, Javascript, or your favorite server-side language. The idea is to be able to use a press of the TAB button or SHIFT+TAB to indent or outdent your code.
try it out!
Simply use TAB to indent code in the textarea, SHIFT+TAB to outdent. It works on a single line or over a range of lines.
jquery
plugin
tabs
textarea
javascript
text
editor
cursor
selection
range
concept
This is a demo of the "Tabby" Javascript jQuery plugin to use tabs in regular textareas to make them suitable for in-browser coding of languages like HTML, CSS, Javascript, or your favorite server-side language. The idea is to be able to use a press of the TAB button or SHIFT+TAB to indent or outdent your code.
try it out!
Simply use TAB to indent code in the textarea, SHIFT+TAB to outdent. It works on a single line or over a range of lines.
june 2011 by michaelfox
Keep element in view while scrolling using JQuery
june 2011 by michaelfox
jScroll is a jQuery plugin that keeps an element in view when a user scrolls.
Download jScroll now: production | development | contribute
To use simply call jScroll on the elements that should scroll.
$(function() {
$(".scroll").jScroll();
});
jquery
plugin
scroll
Download jScroll now: production | development | contribute
To use simply call jScroll on the elements that should scroll.
$(function() {
$(".scroll").jScroll();
});
june 2011 by michaelfox
Apprise - The attractive alert alternative for jQuery
may 2011 by michaelfox
Apprise is
Sexy. An alert alternative for jQuery that looks good. Apprise is a very simple, fast, attractive, and unobtrusive way to communicate with your users. Also, this gives you complete control over style, content, position, and functionality. Apprise is, more or less, for the developer who wants an attractive alert or dialog box without having to download a massive UI framework.
alert
javascript
jquery
plugin
ui
Sexy. An alert alternative for jQuery that looks good. Apprise is a very simple, fast, attractive, and unobtrusive way to communicate with your users. Also, this gives you complete control over style, content, position, and functionality. Apprise is, more or less, for the developer who wants an attractive alert or dialog box without having to download a massive UI framework.
may 2011 by michaelfox
o-sam-o/jquery.select2Buttons - GitHub
april 2011 by michaelfox
Select2Buttons is a jQuery plugin that provides an alternative to the standard html select. The plugin converts selects into a series of button like elements, and if used correctly can provide a better visual representation of the options available to a user.
buttons
css
jquery
plugin
select
april 2011 by michaelfox
Zoomooz.js
march 2011 by michaelfox
jQuery
Zoomooz.js
Zoomooz is an easy-to-use jQuery plugin for making any web page element zoom.
javascript
jquery
plugin
Zoomooz.js
Zoomooz is an easy-to-use jQuery plugin for making any web page element zoom.
march 2011 by michaelfox
ReMate
march 2011 by michaelfox
ReMate is a TextMate plugin which can be used to disable the automatic project tree refresh when the application regains focus.
The plugin adds the following:
a toggleable item to the window menu labeled “Disable Refresh on Regaining Focus” - when this is checked, projects will not be updated when TextMate regains focus.
an option on the project menu (reached by right-clicking on an item in the project tree or the gear at the bottom of the project drawer) to “Refresh All Projects”
Download, extract, double-click.
mac
network
plugin
plugins
textmate
The plugin adds the following:
a toggleable item to the window menu labeled “Disable Refresh on Regaining Focus” - when this is checked, projects will not be updated when TextMate regains focus.
an option on the project menu (reached by right-clicking on an item in the project tree or the gear at the bottom of the project drawer) to “Refresh All Projects”
Download, extract, double-click.
march 2011 by michaelfox
jezdez/textmate-missingdrawer - GitHub
december 2010 by michaelfox
A better sidebar for Textmate.
extension
plugin
plugins
textmate
tools
ide
editor
project
december 2010 by michaelfox
Vimperator — Vimperator Labs
november 2010 by michaelfox
Vimperator is a Firefox browser extension with strong inspiration from the Vim text editor, with a mind towards faster and more efficient browsing. It has similar key bindings and you could call it a modal web browser, as key bindings differ according to which mode you are in. For example, it has a special Hint mode, where you can follow links easily with the keyboard only. Also most functionality is available as commands, typing :back will go back within the current page history, just like hitting the back button in the toolbar.
But Vimperator is more than just a simple command interface to Firefox — it is a complete development environment as well. If you are a web developer, you can enjoy an interactive JavaScript shell — even with completion support. Or if you want to extend Vimperator, you can easily do that by just dropping a JavaScript file in its plugin directory. Browse through our wiki pages for nice tips to customize Vimperator and for frequently asked questions. If you have more questions, you can visit us on IRC, in #vimperator on freenode.
browser
development
firefox
gui
vim
extension
opensource
addons
lifehacks
utility
plugin
vimperator
keyboard
javascript
mozilla
interface
shortcuts
efficiency
productivity
tools
resources
reference
But Vimperator is more than just a simple command interface to Firefox — it is a complete development environment as well. If you are a web developer, you can enjoy an interactive JavaScript shell — even with completion support. Or if you want to extend Vimperator, you can easily do that by just dropping a JavaScript file in its plugin directory. Browse through our wiki pages for nice tips to customize Vimperator and for frequently asked questions. If you have more questions, you can visit us on IRC, in #vimperator on freenode.
november 2010 by michaelfox
related tags
*todo ⊕ /#!/ ⊕ accessibility ⊕ accordion ⊕ addons ⊕ address ⊕ admin ⊕ after ⊕ aftereffects ⊕ ajax ⊕ alert ⊕ align ⊕ analytics ⊕ animation ⊕ app ⊕ apple ⊕ apps ⊕ aria2c ⊕ audio ⊕ auth ⊕ authentication ⊕ author ⊕ authors ⊕ autocomplete ⊕ bar ⊕ bbq ⊕ before ⊕ beforeandafter ⊕ benchmark ⊕ bestpractices ⊕ bio ⊕ bittorrent ⊕ blacklist ⊕ blog ⊕ boilerplate ⊕ bookmarklets ⊕ bootstrap ⊕ boxee ⊕ browser ⊕ builder ⊕ buttons ⊕ cache ⊕ calendar ⊕ canvas ⊕ captcha ⊕ carousel ⊕ categories ⊕ chart ⊕ charting ⊕ checkbox ⊕ chrome ⊕ ckeditor ⊕ cli ⊕ click ⊕ clickoutside ⊕ cocoa ⊕ code ⊕ codehighlighter ⊕ codeigniter ⊕ coding ⊕ collection ⊕ completion ⊕ confirm ⊕ contact ⊕ contentslider ⊕ context ⊕ contextmenu ⊕ control ⊕ core ⊕ corners ⊕ crawler ⊕ crop ⊕ css ⊕ css3 ⊕ ctags ⊕ cursor ⊕ customevents ⊕ customization ⊕ data ⊕ debug ⊕ debugging ⊕ deeplinking ⊕ definition ⊕ delay ⊕ delicious ⊕ demo ⊕ design ⊕ detector ⊕ development ⊕ diagram ⊕ dialog ⊕ directory ⊕ dock ⊕ documentation ⊕ dom ⊕ dotfiles ⊕ dotjs ⊕ download ⊕ drilldown ⊕ dropdown ⊕ droplist ⊕ editor ⊕ ee ⊕ effect ⊕ efficiency ⊕ element ⊕ elements ⊕ encoding ⊕ entities ⊕ entry ⊕ error ⊕ escaping ⊕ event ⊕ events ⊕ example ⊕ excel ⊕ expressionengine ⊕ extension ⊕ extensions ⊕ facebook ⊕ factory ⊕ file ⊕ files ⊕ fileupload ⊕ filter ⊕ find ⊕ firebug ⊕ firefox ⊕ firewall ⊕ flash ⊕ flickr ⊕ flip ⊕ form ⊕ forms ⊕ formvalidation ⊕ fragment ⊕ framework ⊕ function ⊕ gaim ⊕ gallery ⊕ gantt ⊕ garageband ⊕ generator ⊕ geshi ⊕ get ⊕ getScript ⊕ git ⊕ github ⊕ gmail ⊕ google ⊕ googlereader ⊕ graph ⊕ graphics ⊕ greasemonkey ⊕ growl ⊕ gui ⊕ hacks ⊕ hammerhead ⊕ hash ⊕ help ⊕ hierarchy ⊕ highlight ⊕ highlighting ⊕ hinting ⊕ history ⊕ hover ⊕ howto ⊕ html ⊕ html5 ⊕ http ⊕ ical ⊕ ico ⊕ icons ⊕ ide ⊕ idle ⊕ ie ⊕ ie6 ⊕ ie7 ⊕ if ⊕ image ⊕ images ⊕ imageswap ⊕ import ⊕ input ⊕ inspiration ⊕ interface ⊕ inview ⊕ ios ⊕ ipad ⊕ iphone ⊕ itunes ⊕ javascript ⊕ jcontext ⊕ jqmodal ⊕ jquery ⊕ jquerymobile ⊕ jqueryui ⊕ key ⊕ keybindings ⊕ keyboard ⊕ keypress ⊕ layout ⊕ lazy ⊕ lazyload ⊕ lib ⊕ library ⊕ lifehacks ⊕ lightbox ⊕ like ⊕ limiter ⊕ list ⊕ loader ⊕ loading ⊕ loadtime ⊕ logic ⊕ mac ⊕ macosx ⊕ mail ⊕ maxlength ⊕ media ⊕ menu ⊕ message ⊕ messages ⊕ messaging ⊕ microformats ⊕ mixedcontent ⊕ mobile ⊕ modal ⊕ module ⊕ mouse ⊕ mozilla ⊕ mp3 ⊕ multimedia ⊕ music ⊕ navigation ⊕ network ⊕ notes ⊕ notification ⊕ objective-c ⊕ opensource ⊕ optimize ⊕ options ⊕ order ⊕ osx ⊕ overlay ⊕ pagination ⊕ panel ⊕ paramaters ⊕ params ⊕ parms ⊕ parseing ⊕ path ⊕ patterns ⊕ pdf ⊕ performance ⊕ periodical ⊕ photo ⊕ photoshop ⊕ phototagging ⊕ php ⊕ pinbaord ⊕ player ⊕ plugin ⊖ plugins ⊕ png ⊕ popup ⊕ popups ⊕ pre ⊕ preload ⊕ productivity ⊕ programming ⊕ project ⊕ projectplus ⊕ queue ⊕ quicklook ⊕ quicksilver ⊕ range ⊕ reader ⊕ ready ⊕ reference ⊕ reorder ⊕ repo ⊕ resources ⊕ rotate ⊕ roundabout ⊕ rounded ⊕ roundedcorners ⊕ rss ⊕ safari ⊕ sass ⊕ scraper ⊕ scripting ⊕ scripts ⊕ scroll ⊕ search ⊕ security ⊕ select ⊕ selectbox ⊕ selection ⊕ seo ⊕ session ⊕ sharing ⊕ shell ⊕ shortcut ⊕ shortcuts ⊕ slider ⊕ slideshow ⊕ social ⊕ socialnetworking ⊕ software ⊕ sorting ⊕ source ⊕ sourcecode ⊕ spam ⊕ spark ⊕ speed ⊕ sqlite ⊕ styling ⊕ subversion ⊕ suite ⊕ svn ⊕ swf ⊕ swfupload ⊕ syntax ⊕ table ⊕ tables ⊕ tabs ⊕ tabular ⊕ tag ⊕ tagging ⊕ tags ⊕ templates ⊕ test ⊕ testing ⊕ text ⊕ textarea ⊕ textmate ⊕ theme ⊕ themes ⊕ thunderbird ⊕ time ⊕ timepicker ⊕ timer ⊕ tmbundle ⊕ toolbar ⊕ tools ⊕ tooltips ⊕ transcoding ⊕ transition ⊕ tree ⊕ truncation ⊕ tutorial ⊕ tutorials ⊕ twitter ⊕ ui ⊕ ultimatebuild ⊕ undo ⊕ updater ⊕ upload ⊕ uploads ⊕ uri ⊕ url ⊕ userscripts ⊕ userstyles ⊕ utilities ⊕ utility ⊕ utils ⊕ ux ⊕ validation ⊕ video ⊕ vim ⊕ vimperator ⊕ visualization ⊕ vuze ⊕ web ⊕ web2.0 ⊕ webdesign ⊕ webdev ⊕ webkit ⊕ widget ⊕ widgets ⊕ wma ⊕ wordpress ⊕ wysiwyg ⊕ xcode ⊕ xul ⊕ xulrunner ⊕ yslow ⊕ zsh ⊕Copy this bookmark: