4532
qooxdoo » Home
a universal JavaScript framework
with a coherent set of individual components
framework  javascript  ui 
8 days ago
PhantomJS: Headless WebKit with JavaScript API
PhantomJS is a headless WebKit with JavaScript API. It has fast and native support for various web standards: DOM handling, CSS selector, JSON, Canvas, and SVG.
PhantomJS is created by Ariya Hidayat.
browser  webkit  testing  headless 
8 days ago
PaintbrushJS Playground
PaintbrushJS is a lightweight browser-based image processing library built with Javascript and canvas.
javascript  canvas  image  effects 
14 days ago
Jquery.ascensor.js
"Ascensor is a jquery plugin which aims to train and adapt content according to an elevator system"
jquery  plugin  navigation 
14 days ago
maki : a free web design mock-up tool for pixel perfect layouts
If you're like us, you go to great lengths to make your web site look just like the design mock-up.
Getting that perfect layout transitioned beautifully to HTML and CSS can be a struggle! Don't you just wish you could overlay your mock-up in browser and see the adjustments you need to make, and tweak away until they match? Well so did we. That's why we built maki: a simple app that brings your mock-ups straight into the browser.
bookmarklet  mockup  tools  design 
18 days ago
Sortbox — Organize your Dropbox
Like e-mail filters, for your Dropbox.
Sortbox is a magic folder in your Dropbox that moves files to folders based on your rules.
dropbox  tools 
22 days ago
jQuery Sticky Scroller / Position:Fixed Plugin
The jQuery sticky scroll effect is a trending effect that has great user experience capabilities. One of the most cited examples of the sticky scroller effect is found at Blue Sky Resumes.
jquery  plugin  javascript  scroll  navigation 
23 days ago
jQuery Waypoints
Waypoints is a small jQuery plugin that makes it easy to execute a function whenever you scroll to an element.
jquery  plugin  javascript  scroll  sticky 
23 days ago
ubilabs/geocomplete · GitHub
An advanced jQuery plugin that wraps the Google Maps API's Geocoding and Places Autocomplete services. You simply provide an input that lets you search for locations with a nice autocomplete dropdown. Optionally add a container to show an interactive map and a form that will be populated with the address details.
jquery  plugin  googlemaps  geocoding  autocomplete 
24 days ago
Get hidden elements width and height with jQuery | DreamersLab
A jQuery plugin that gets the actual width of hidden DOM elements
jquery  plugin  js 
24 days ago
Proto.io - Silly-fast mobile prototyping.
Create fully-interactive high-fidelity prototypes in minutes that look and work exactly like your app should.
prototyping  mobile  tools  webtool  iphone 
4 weeks ago
cicadaJS - <canvas> Stripe Pattern Generator - Matthew Lein
cicadaJS is a <canvas> JavaScript used to create stripe patterns. It supports unlimited stripes, gradients, and more!
pattern  generator  js  javascript 
4 weeks ago
The Big Book of Font Combinations
So many font combinations. So little time.

The Big Book of Font Combinations is an expansive collection of carefully crafted typeface pair samples. The font pairings in BBOFC will inspire you and give you back time you need for your design projects. Use the font combination examples straight out of the BBOFC in your next project, or use them as a springboard for your own creativity. However you use the BBOFC, it’s bound to inspire and is a trustworthy companion to consult for all kinds of design projects and general study of typography.
ebook  fonts  overview 
6 weeks ago
PSDCovers
Turn your 2D designs into 3D product shots in seconds using Photoshop!
actions  free  photoshop  cover  3d 
6 weeks ago
jQuery Smooth Scrolling Plugin | Page Scroller
Smooth Scrolling Made Simple
Add Animated Page Targets To Your Website
jquery  scrolling  navigation  js  plugin 
6 weeks ago
Sparrow Sidebar Icons by ~Jean31 on deviantART
2 Icons included. (iCloud, single mailbox)
PSD Template
sparrow  icon  icloud 
7 weeks ago
FlashCanvas.net
FlashCanvas is a JavaScript library which adds the HTML5 Canvas support to Internet Explorer. It renders shapes and images via Flash drawing API. It supports almost all Canvas APIs and, in many cases, runs faster than other similar libraries which use VML or Silverlight.
polyfill  canvas  html5  javascript 
7 weeks ago
Entypo - 100+ carefully crafted pictograms
Entypo is a set of 100+ carefully crafted pictograms available as an OpenType font, vector EPS and web font. All released for free under the Creative Commons license CC BY-SA.
free  font  dingbats  icons 
7 weeks ago
FontShop Plugin | FontShop
The FontShop Plugin Beta allows designers and other type enthusiasts to try out FontShop fonts directly inside Adobe® Photoshop® CS5 and CS5.5. You can preview any of the over 150,000 FontShop fonts for free, in the context of your own artwork. This is a great new way to find the perfect typographic fit for your project.
plugin  photoshop  fonts  design 
8 weeks ago
balupton/history.js · GitHub
This project is the successor of jQuery History, it aims to:

Follow the HTML5 History API as much as possible
Provide a cross-compatible experience for all HTML5 Browsers (they all implement the HTML5 History API a little bit differently causing different behaviours and sometimes bugs - History.js fixes this ensuring the experience is as expected / the same / great throughout the HTML5 browsers)
Provide a backwards-compatible experience for all HTML4 Browsers using a hash-fallback (including continued support for the HTML5 History API's data, title, pushState and replaceState) with the option to remove HTML4 support if it is not right for your application
Provide a forwards-compatible experience for HTML4 States to HTML5 States (so if a hash-fallbacked url is accessed by a HTML5 browser it is naturally transformed into its non-hashed url equivalent)
Provide support for as many javascript frameworks as possible via adapters; especially jQuery, MooTools, Prototype and Zepto
jquery  plugin  history 
8 weeks ago
WordPress › Support » Sort archives alphabetically grouped by starting letter
<?php
$args = array(
'orderby' => 'title',
'order' => 'ASC',
'caller_get_posts' => 1,
'posts_per_page' => 20,
);
query_posts($args);
if (have_posts()) {
$curr_letter = '';
while (have_posts()) {
the_post();
$this_letter = strtoupper(substr($post->post_title,0,1));
if ($this_letter != $curr_letter) {
echo "<h2> # $this_letter #</h2>";
$curr_letter = $this_letter;
}
?>
<br />
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
<?php }
}
?>
wordpress  snippets 
9 weeks ago
Programmatically Pull Attachments from WordPress Posts - John Ford
// get all of the images attached to the current post
function aldenta_get_images($size = 'thumbnail') {
global $post;

$photos = get_children( array('post_parent' => $post->ID, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID') );

$results = array();

if ($photos) {
foreach ($photos as $photo) {
// get the correct image html for the selected size
$results[] = wp_get_attachment_image($photo->ID, $size);
}
}

return $results;
}
wordpress  snippet  attachment 
9 weeks ago
tentonaxe/jQuery-preloadImages · GitHub
jQuery Preload Images plugin for pre-loading images and
optionally running a callback function when done.
jquery  plugin  preloader  images 
9 weeks ago
Animation Fill Code | CSS3 Keyframe Animation Code Generator
ANIMATION FILL CODE
Because You Should Only Have to Type it Once
css  animation  webtool 
10 weeks ago
danieltott/Less-CSS-Toolkit · GitHub
.animation(@name, @duration, @iteration-count, @timing){
-moz-animation-name: @name;
-moz-animation-duration: @duration;
-moz-animation-iteration-count: @iteration-count;
-moz-animation-timing-function: @timing;

-webkit-animation-name: @name;
-webkit-animation-duration: @duration;
-webkit-animation-iteration-count: @iteration-count;
-webkit-animation-timing-function: @timing;

-ms-animation-name: @name;
-ms-animation-duration: @duration;
-ms-animation-iteration-count: @iteration-count;
-ms-animation-timing-function: @timing;

-o-animation-name: @name;
-o-animation-duration: @duration;
-o-animation-iteration-count: @iteration-count;
-o-animation-timing-function: @timing;

animation-name: @name;
animation-duration: @duration;
animation-iteration-count: @iteration-count;
animation-timing-function: @timing;
}
lesscss  mixins 
10 weeks ago
Useful Less CSS mixins for cross browser development | Collingo
.animate (@name, @duration: 1s, @count: infinite, @direction: normal, @function: ease-in-out) {
-moz-animation-name: @name;
-moz-animation-duration: @duration;
-moz-animation-iteration-count: @count;
-moz-animation-direction: @direction;
-moz-animation-timing-function: @function;
-webkit-animation-name: @name;
-webkit-animation-duration: @duration;
-webkit-animation-iteration-count: @count;
-webkit-animation-direction: @direction;
-webkit-animation-timing-function: @function;
}
lesscss  mixins 
10 weeks ago
Preboot.less by Mark Otto
Preboot is a super awesome pack of mixins and variables to be used in conjunction with LESS, a CSS preprocessor for faster and easier web development.
css  lesscss 
10 weeks ago
Stylus
Expressive, dynamic, robust CSS
css  development  webdev  nodejs  preprocessor  mixins 
11 weeks ago
Bootswatch: Free themes for Twitter Bootstrap
Add color to your Bootstrap site without touching a color picker.
bootstrap  css  themes 
11 weeks ago
« earlier      
3d actionscript administration agentur ajax animation apache app art as3 background backup base64 berlin blog bookmarklet browser brushes button cache cakephp calendar cck cms coda collaboration color colorpicker commercial community convert corporate css css3 darmstadt design designer development dock download dropdown druckerei drupal drupal6 editor email extension fashion firefox flash flickr fluid font fonts forms fotografie fotos foundry framework frankfurt free freeware fullscreen gallery game generator google googlemaps grid growl gtd gui hamburg hosting howto html html5 icon icons ie ie6 illustration illustrator image imagereplacement images infografiken inspiration interface ios ipad iphone javascript joomla jquery js klamotten kunst layout lesscss liferay lightbox linux london mac macosx magazine magento mail mamp map marketing menu minimal minimalistic mobile module mootools music muster mysql möbel navigation newsletter omnifocus opensource osx osx86 overview papier pattern pdf performance photos photoshop php plugin plugins png portfolio print projectmanagement prototyping raster resources revisit rounded_corner safari schriften schuhe screenshot search security seo shop slider slideshow snippet snippets socialnetwork software starterkit statistics stock studio svn sync table taxonomy template templates testing theme timetracking todo tools tooltip tutorial tutorials twitter typo typografie typography ui usability ux vector video views visualization web2.0 webapp webdesign webdev webkit webservice webshop webtool widget windows wireframes wohnung wordpress wysiwyg youtube

Copy this bookmark:



description:


tags: