Always Cheat (Web Developer Cheat Sheets)

tjholowaychuk - July 18, 2008 - 16:54

We launch http://alwayscheat.com built on Drupal 6.3. A great source for web developer cheat sheets. We plan on providing a print service so firms may order 'packages' or laminated cheat sheets and task sheets.

To read more about the outgoing traffic analysis or the drupal development process view http://vision-media.ca/resources/drupal/launch-always-cheat

Very nice! Are you using

eorr - July 18, 2008 - 18:19

Very nice! Are you using jquery to fade from thumbnail to info and vice versa?

www.drupalmuseum.com
www.organicsitedesign.com

Sure am! here is the tiny

tjholowaychuk - July 18, 2008 - 18:21

Sure am! here is the tiny script if your interested:

  // View cheat information
  $('.node-cheat .view-info, .node-cheat .thumbnail, .node-cheat h2').click(function(){
    var node = $(this).parents('.node');
   
    // Show thumbnail
    if ($(node).hasClass('viewing-info')){
      $(node).removeClass('viewing-info');
      $('.thumbnail', node).fadeIn(400);
    }
    // Viewing info
    else {                             
      $(node).addClass('viewing-info');
      $('img', node).fadeOut(400);
    }
   
    return false;
  });

____________________________________________________
Tj Holowaychuk

Vision Media - Victoria BC Web Design
Victoria British Columbia Web Design School

Thanks for the script! Very

eorr - July 18, 2008 - 18:26

Thanks for the script! Very simple yet effective. I'll post your site on Drupal Museum next week.

www.drupalmuseum.com
www.organicsitedesign.com

Sounds

tjholowaychuk - July 18, 2008 - 18:32

Sounds good!
____________________________________________________
Tj Holowaychuk

Vision Media - Victoria BC Web Design
Victoria British Columbia Web Design School

I just added a quick

tjholowaychuk - July 18, 2008 - 22:05

I just added a quick category browsing feature. Pretty quick to implement with Views 2 :)
____________________________________________________
Tj Holowaychuk

Vision Media - Victoria BC Web Design
Victoria British Columbia Web Design School

 
 

Drupal is a registered trademark of Dries Buytaert.