Skip to main content

Home/ Nerdzr/ Group items tagged jquery

Rss Feed Group items tagged

Jac Londe

HTML5 Grayscale Image Hover - 1 views

  • with HTML5 canvas, images can be manipulated into grayscale without having to use image editing software. I've put together a demo to show you how to use HTML5 & jQuery to dynamically clone color images into grayscale (see demo). Credits: thanks to Darcy Clarke (my Themify's partner) for the jQuery and Javascript code.
Jac Londe

Fullscreen Image 3D Effect with CSS3 and jQuery - 0 views

  • Fullscreen Image 3D Effect with CSS3 and jQuery
Jac Londe

PHP Simple HTML DOM Parser - 0 views

  • A HTML DOM parser written in PHP5+ let you manipulate HTML in a very easy way! Require PHP 5+. Supports invalid HTML. Find tags on an HTML page with selectors just like jQuery. Extract contents from HTML in a single line.
  • // Create DOM from string $html = str_get_html('<div id="hello">Hello</div><div id="world">World</div>'); $html->find('div', 1)->class = 'bar'; $html->find('div[id=hello]', 0)->innertext = 'foo'; echo $html; // Output: <div id="hello">foo</div><div id="world" class="bar">World</div>
1 - 5 of 5
Showing 20 items per page