Changeset 4447 for extensions/Juza/js
- Timestamp:
- Dec 7, 2009, 11:55:05 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/Juza/js/juzascript.js
r4439 r4447 4 4 }); 5 5 $('div.illustration a img').each(function() { 6 $(this).addClass('bigImg').attr('src', $(this).attr('src').replace('thumbnail \/TN-', ''));6 $(this).addClass('bigImg').attr('src', $(this).attr('src').replace('thumbnail/TN-', '')); 7 7 }); 8 $("ul.categoryActions li a[href*='category \/'][href*='\/flat']").each(function() {8 $("ul.categoryActions li a[href*='category/'][href*='/flat']").each(function() { 9 9 /* $('ul.categoryActions').css('display','inline'); */ 10 $('div.titrePage h2').prepend('<a class="jQuery home" href="index.php" title="Home">Albums< \/a>');11 $('# stuffs_block_2').prepend('<div id="jquery_local_img"><\/div>');10 $('div.titrePage h2').prepend('<a class="jQuery home" href="index.php" title="Home">Albums</a>'); 11 $('#copyright').before('<div id="jquery_local_img"></div>'); 12 12 }); 13 13 14 14 $('span.wrap2 a img').click(function() { 15 $scr = $(this).attr('src').replace('thumbnail \/TN-', '');15 $scr = $(this).attr('src').replace('thumbnail/TN-', ''); 16 16 $href = $(this).parent('a').attr('href'); 17 17 $title = $(this).attr('title'); 18 18 $alt = $(this).attr('alt'); 19 19 $(this).parent('a').attr('href', '#jquery_local_img'); 20 $temp = $href.substr($href.indexOf(' \/')+1);21 $temp = $temp.substr(0,$temp.indexOf(' \/'));22 $('#jquery_local_img').replaceWith('<div id="jquery_local_img"><img usemap="#picturetop" title="'+$title+'" alt="'+$alt+'" src="'+$scr+'" \/><map name="picturetop"><area href="#" coords="0,0,800,300" shape="rect" title="Index"\/><area href="'+$href+'" coords="0,300,800,600" shape="rect" title="'+$title+'"\/><\/map><br/>'+$temp+' \/ - Blahblahblah - Canon Model, or Nikon Model - Speed, iso, keywords... '+ $title +' - <a href="#"><em>Index<\/em><\/a><\/div>');20 $temp = $href.substr($href.indexOf('/')+1); 21 $temp = $temp.substr(0,$temp.indexOf('/')); 22 $('#jquery_local_img').replaceWith('<div id="jquery_local_img"><img usemap="#picturetop" title="'+$title+'" alt="'+$alt+'" src="'+$scr+'"/><map name="picturetop"><area href="#" coords="0,0,800,300" shape="rect" title="Index"/><area href="'+$href+'" coords="0,300,800,600" shape="rect" title="'+$title+'"/></map><br/>'+$temp+' / - Blahblahblah - Canon Model, or Nikon Model - Speed, iso, keywords... '+ $title +' - <a href="#"><em>Index</em></a></div>'); 23 23 }); 24 24 … … 28 28 29 29 }); 30
Note: See TracChangeset
for help on using the changeset viewer.