This shows you the differences between two versions of the page.
divers:bd [2007/11/29 22:17] axelle |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | Vous trouverez ci-dessous des appréciations personnelles de Bandes Dessinées que nous avons lues. Evidemment, c'est assez subjectif ! | ||
- | <html> | ||
- | <script> | ||
- | /* | ||
- | SortTable | ||
- | version 2 | ||
- | 7th April 2007 | ||
- | Stuart Langridge, http://www.kryogenix.org/code/browser/sorttable/ | ||
- | |||
- | Instructions: | ||
- | Download this file | ||
- | Add <script src="sorttable.js"></script> to your HTML | ||
- | Add class="sortable" to any table you'd like to make sortable | ||
- | Click on the headers to sort | ||
- | |||
- | Thanks to many, many people for contributions and suggestions. | ||
- | Licenced as X11: http://www.kryogenix.org/code/browser/licence.html | ||
- | This basically means: do what you want with it. | ||
- | */ | ||
- | |||
- | var stIsIE = /*@cc_on!@*/false; | ||
- | |||
- | sorttable = { | ||
- | init: function() { | ||
- | // quit if this function has already been called | ||
- | if (arguments.callee.done) return; | ||
- | // flag this function so we don't do the same thing twice | ||
- | arguments.callee.done = true; | ||
- | // kill the timer | ||
- | if (_timer) clearInterval(_timer); | ||
- | |||
- | if (!document.createElement || !document.getElementsByTagName) return; | ||
- | |||
- | sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; | ||
- | |||
- | forEach(document.getElementsByTagName('table'), function(table) { | ||
- | if (table.className.search(/\bsortable\b/) != -1) { | ||
- | sorttable.makeSortable(table); | ||
- | } | ||
- | }); | ||
- | |||
- | }, | ||
- | |||
- | makeSortable: function(table) { | ||
- | if (table.getElementsByTagName('thead').length == 0) { | ||
- | // table doesn't have a tHead. Since it should have, create one and | ||
- | // put the first table row in it. | ||
- | the = document.createElement('thead'); | ||
- | the.appendChild(table.rows[0]); | ||
- | table.insertBefore(the,table.firstChild); | ||
- | } | ||
- | // Safari doesn't support table.tHead, sigh | ||
- | if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; | ||
- | |||
- | if (table.tHead.rows.length != 1) return; // can't cope with two header rows | ||
- | |||
- | // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as | ||
- | // "total" rows, for example). This is B&R, since what you're supposed | ||
- | // to do is put them in a tfoot. So, if there are sortbottom rows, | ||
- | // for backwards compatibility, move them to tfoot (creating it if needed). | ||
- | sortbottomrows = []; | ||
- | for (var i=0; i<table.rows.length; i++) { | ||
- | if (table.rows[i].className.search(/\bsortbottom\b/) != -1) { | ||
- | sortbottomrows[sortbottomrows.length] = table.rows[i]; | ||
- | } | ||
- | } | ||
- | if (sortbottomrows) { | ||
- | if (table.tFoot == null) { | ||
- | // table doesn't have a tfoot. Create one. | ||
- | tfo = document.createElement('tfoot'); | ||
- | table.appendChild(tfo); | ||
- | } | ||
- | for (var i=0; i<sortbottomrows.length; i++) { | ||
- | tfo.appendChild(sortbottomrows[i]); | ||
- | } | ||
- | delete sortbottomrows; | ||
- | } | ||
- | |||
- | // work through each column and calculate its type | ||
- | headrow = table.tHead.rows[0].cells; | ||
- | for (var i=0; i<headrow.length; i++) { | ||
- | // manually override the type with a sorttable_type attribute | ||
- | if (!headrow[i].className.match(/\bsorttable_nosort\b/)) { // skip this col | ||
- | mtch = headrow[i].className.match(/\bsorttable_([a-z0-9]+)\b/); | ||
- | if (mtch) { override = mtch[1]; } | ||
- | if (mtch && typeof sorttable["sort_"+override] == 'function') { | ||
- | headrow[i].sorttable_sortfunction = sorttable["sort_"+override]; | ||
- | } else { | ||
- | headrow[i].sorttable_sortfunction = sorttable.guessType(table,i); | ||
- | } | ||
- | // make it clickable to sort | ||
- | headrow[i].sorttable_columnindex = i; | ||
- | headrow[i].sorttable_tbody = table.tBodies[0]; | ||
- | dean_addEvent(headrow[i],"click", function(e) { | ||
- | |||
- | if (this.className.search(/\bsorttable_sorted\b/) != -1) { | ||
- | // if we're already sorted by this column, just | ||
- | // reverse the table, which is quicker | ||
- | sorttable.reverse(this.sorttable_tbody); | ||
- | this.className = this.className.replace('sorttable_sorted', | ||
- | 'sorttable_sorted_reverse'); | ||
- | this.removeChild(document.getElementById('sorttable_sortfwdind')); | ||
- | sortrevind = document.createElement('span'); | ||
- | sortrevind.id = "sorttable_sortrevind"; | ||
- | sortrevind.innerHTML = stIsIE ? ' <font face="webdings">5</font>' : ' ▴'; | ||
- | this.appendChild(sortrevind); | ||
- | return; | ||
- | } | ||
- | if (this.className.search(/\bsorttable_sorted_reverse\b/) != -1) { | ||
- | // if we're already sorted by this column in reverse, just | ||
- | // re-reverse the table, which is quicker | ||
- | sorttable.reverse(this.sorttable_tbody); | ||
- | this.className = this.className.replace('sorttable_sorted_reverse', | ||
- | 'sorttable_sorted'); | ||
- | this.removeChild(document.getElementById('sorttable_sortrevind')); | ||
- | sortfwdind = document.createElement('span'); | ||
- | sortfwdind.id = "sorttable_sortfwdind"; | ||
- | sortfwdind.innerHTML = stIsIE ? ' <font face="webdings">6</font>' : ' ▾'; | ||
- | this.appendChild(sortfwdind); | ||
- | return; | ||
- | } | ||
- | |||
- | // remove sorttable_sorted classes | ||
- | theadrow = this.parentNode; | ||
- | forEach(theadrow.childNodes, function(cell) { | ||
- | if (cell.nodeType == 1) { // an element | ||
- | cell.className = cell.className.replace('sorttable_sorted_reverse',''); | ||
- | cell.className = cell.className.replace('sorttable_sorted',''); | ||
- | } | ||
- | }); | ||
- | sortfwdind = document.getElementById('sorttable_sortfwdind'); | ||
- | if (sortfwdind) { sortfwdind.parentNode.removeChild(sortfwdind); } | ||
- | sortrevind = document.getElementById('sorttable_sortrevind'); | ||
- | if (sortrevind) { sortrevind.parentNode.removeChild(sortrevind); } | ||
- | |||
- | this.className += ' sorttable_sorted'; | ||
- | sortfwdind = document.createElement('span'); | ||
- | sortfwdind.id = "sorttable_sortfwdind"; | ||
- | sortfwdind.innerHTML = stIsIE ? ' <font face="webdings">6</font>' : ' ▾'; | ||
- | this.appendChild(sortfwdind); | ||
- | |||
- | // build an array to sort. This is a Schwartzian transform thing, | ||
- | // i.e., we "decorate" each row with the actual sort key, | ||
- | // sort based on the sort keys, and then put the rows back in order | ||
- | // which is a lot faster because you only do getInnerText once per row | ||
- | row_array = []; | ||
- | col = this.sorttable_columnindex; | ||
- | rows = this.sorttable_tbody.rows; | ||
- | for (var j=0; j<rows.length; j++) { | ||
- | row_array[row_array.length] = [sorttable.getInnerText(rows[j].cells[col]), rows[j]]; | ||
- | } | ||
- | /* If you want a stable sort, uncomment the following line */ | ||
- | //sorttable.shaker_sort(row_array, this.sorttable_sortfunction); | ||
- | /* and comment out this one */ | ||
- | row_array.sort(this.sorttable_sortfunction); | ||
- | |||
- | tb = this.sorttable_tbody; | ||
- | for (var j=0; j<row_array.length; j++) { | ||
- | tb.appendChild(row_array[j][1]); | ||
- | } | ||
- | |||
- | delete row_array; | ||
- | }); | ||
- | } | ||
- | } | ||
- | }, | ||
- | |||
- | guessType: function(table, column) { | ||
- | // guess the type of a column based on its first non-blank row | ||
- | sortfn = sorttable.sort_alpha; | ||
- | for (var i=0; i<table.tBodies[0].rows.length; i++) { | ||
- | text = sorttable.getInnerText(table.tBodies[0].rows[i].cells[column]); | ||
- | if (text != '') { | ||
- | if (text.match(/^-?[£$¤]?[\d,.]+%?$/)) { | ||
- | return sorttable.sort_numeric; | ||
- | } | ||
- | // check for a date: dd/mm/yyyy or dd/mm/yy | ||
- | // can have / or . or - as separator | ||
- | // can be mm/dd as well | ||
- | possdate = text.match(sorttable.DATE_RE) | ||
- | if (possdate) { | ||
- | // looks like a date | ||
- | first = parseInt(possdate[1]); | ||
- | second = parseInt(possdate[2]); | ||
- | if (first > 12) { | ||
- | // definitely dd/mm | ||
- | return sorttable.sort_ddmm; | ||
- | } else if (second > 12) { | ||
- | return sorttable.sort_mmdd; | ||
- | } else { | ||
- | // looks like a date, but we can't tell which, so assume | ||
- | // that it's dd/mm (English imperialism!) and keep looking | ||
- | sortfn = sorttable.sort_ddmm; | ||
- | } | ||
- | } | ||
- | } | ||
- | } | ||
- | return sortfn; | ||
- | }, | ||
- | |||
- | getInnerText: function(node) { | ||
- | // gets the text we want to use for sorting for a cell. | ||
- | // strips leading and trailing whitespace. | ||
- | // this is *not* a generic getInnerText function; it's special to sorttable. | ||
- | // for example, you can override the cell text with a customkey attribute. | ||
- | // it also gets .value for <input> fields. | ||
- | |||
- | hasInputs = (typeof node.getElementsByTagName == 'function') && | ||
- | node.getElementsByTagName('input').length; | ||
- | |||
- | if (node.getAttribute("sorttable_customkey") != null) { | ||
- | return node.getAttribute("sorttable_customkey"); | ||
- | } | ||
- | else if (typeof node.textContent != 'undefined' && !hasInputs) { | ||
- | return node.textContent.replace(/^\s+|\s+$/g, ''); | ||
- | } | ||
- | else if (typeof node.innerText != 'undefined' && !hasInputs) { | ||
- | return node.innerText.replace(/^\s+|\s+$/g, ''); | ||
- | } | ||
- | else if (typeof node.text != 'undefined' && !hasInputs) { | ||
- | return node.text.replace(/^\s+|\s+$/g, ''); | ||
- | } | ||
- | else { | ||
- | switch (node.nodeType) { | ||
- | case 3: | ||
- | if (node.nodeName.toLowerCase() == 'input') { | ||
- | return node.value.replace(/^\s+|\s+$/g, ''); | ||
- | } | ||
- | case 4: | ||
- | return node.nodeValue.replace(/^\s+|\s+$/g, ''); | ||
- | break; | ||
- | case 1: | ||
- | case 11: | ||
- | var innerText = ''; | ||
- | for (var i = 0; i < node.childNodes.length; i++) { | ||
- | innerText += sorttable.getInnerText(node.childNodes[i]); | ||
- | } | ||
- | return innerText.replace(/^\s+|\s+$/g, ''); | ||
- | break; | ||
- | default: | ||
- | return ''; | ||
- | } | ||
- | } | ||
- | }, | ||
- | |||
- | reverse: function(tbody) { | ||
- | // reverse the rows in a tbody | ||
- | newrows = []; | ||
- | for (var i=0; i<tbody.rows.length; i++) { | ||
- | newrows[newrows.length] = tbody.rows[i]; | ||
- | } | ||
- | for (var i=newrows.length-1; i>=0; i--) { | ||
- | tbody.appendChild(newrows[i]); | ||
- | } | ||
- | delete newrows; | ||
- | }, | ||
- | |||
- | /* sort functions | ||
- | each sort function takes two parameters, a and b | ||
- | you are comparing a[0] and b[0] */ | ||
- | sort_numeric: function(a,b) { | ||
- | aa = parseFloat(a[0].replace(/[^0-9.-]/g,'')); | ||
- | if (isNaN(aa)) aa = 0; | ||
- | bb = parseFloat(b[0].replace(/[^0-9.-]/g,'')); | ||
- | if (isNaN(bb)) bb = 0; | ||
- | return aa-bb; | ||
- | }, | ||
- | sort_alpha: function(a,b) { | ||
- | if (a[0]==b[0]) return 0; | ||
- | if (a[0]<b[0]) return -1; | ||
- | return 1; | ||
- | }, | ||
- | sort_ddmm: function(a,b) { | ||
- | mtch = a[0].match(sorttable.DATE_RE); | ||
- | y = mtch[3]; m = mtch[2]; d = mtch[1]; | ||
- | if (m.length == 1) m = '0'+m; | ||
- | if (d.length == 1) d = '0'+d; | ||
- | dt1 = y+m+d; | ||
- | mtch = b[0].match(sorttable.DATE_RE); | ||
- | y = mtch[3]; m = mtch[2]; d = mtch[1]; | ||
- | if (m.length == 1) m = '0'+m; | ||
- | if (d.length == 1) d = '0'+d; | ||
- | dt2 = y+m+d; | ||
- | if (dt1==dt2) return 0; | ||
- | if (dt1<dt2) return -1; | ||
- | return 1; | ||
- | }, | ||
- | sort_mmdd: function(a,b) { | ||
- | mtch = a[0].match(sorttable.DATE_RE); | ||
- | y = mtch[3]; d = mtch[2]; m = mtch[1]; | ||
- | if (m.length == 1) m = '0'+m; | ||
- | if (d.length == 1) d = '0'+d; | ||
- | dt1 = y+m+d; | ||
- | mtch = b[0].match(sorttable.DATE_RE); | ||
- | y = mtch[3]; d = mtch[2]; m = mtch[1]; | ||
- | if (m.length == 1) m = '0'+m; | ||
- | if (d.length == 1) d = '0'+d; | ||
- | dt2 = y+m+d; | ||
- | if (dt1==dt2) return 0; | ||
- | if (dt1<dt2) return -1; | ||
- | return 1; | ||
- | }, | ||
- | |||
- | shaker_sort: function(list, comp_func) { | ||
- | // A stable sort function to allow multi-level sorting of data | ||
- | // see: http://en.wikipedia.org/wiki/Cocktail_sort | ||
- | // thanks to Joseph Nahmias | ||
- | var b = 0; | ||
- | var t = list.length - 1; | ||
- | var swap = true; | ||
- | |||
- | while(swap) { | ||
- | swap = false; | ||
- | for(var i = b; i < t; ++i) { | ||
- | if ( comp_func(list[i], list[i+1]) > 0 ) { | ||
- | var q = list[i]; list[i] = list[i+1]; list[i+1] = q; | ||
- | swap = true; | ||
- | } | ||
- | } // for | ||
- | t--; | ||
- | |||
- | if (!swap) break; | ||
- | |||
- | for(var i = t; i > b; --i) { | ||
- | if ( comp_func(list[i], list[i-1]) < 0 ) { | ||
- | var q = list[i]; list[i] = list[i-1]; list[i-1] = q; | ||
- | swap = true; | ||
- | } | ||
- | } // for | ||
- | b++; | ||
- | |||
- | } // while(swap) | ||
- | } | ||
- | } | ||
- | |||
- | /* ****************************************************************** | ||
- | Supporting functions: bundled here to avoid depending on a library | ||
- | ****************************************************************** */ | ||
- | |||
- | // Dean Edwards/Matthias Miller/John Resig | ||
- | |||
- | /* for Mozilla/Opera9 */ | ||
- | if (document.addEventListener) { | ||
- | document.addEventListener("DOMContentLoaded", sorttable.init, false); | ||
- | } | ||
- | |||
- | /* for Internet Explorer */ | ||
- | /*@cc_on @*/ | ||
- | /*@if (@_win32) | ||
- | document.write("<script id=__ie_onload defer src=javascript:void(0)><\/script>"); | ||
- | var script = document.getElementById("__ie_onload"); | ||
- | script.onreadystatechange = function() { | ||
- | if (this.readyState == "complete") { | ||
- | sorttable.init(); // call the onload handler | ||
- | } | ||
- | }; | ||
- | /*@end @*/ | ||
- | |||
- | /* for Safari */ | ||
- | if (/WebKit/i.test(navigator.userAgent)) { // sniff | ||
- | var _timer = setInterval(function() { | ||
- | if (/loaded|complete/.test(document.readyState)) { | ||
- | sorttable.init(); // call the onload handler | ||
- | } | ||
- | }, 10); | ||
- | } | ||
- | |||
- | /* for other browsers */ | ||
- | window.onload = sorttable.init; | ||
- | |||
- | // written by Dean Edwards, 2005 | ||
- | // with input from Tino Zijdel, Matthias Miller, Diego Perini | ||
- | |||
- | // http://dean.edwards.name/weblog/2005/10/add-event/ | ||
- | |||
- | function dean_addEvent(element, type, handler) { | ||
- | if (element.addEventListener) { | ||
- | element.addEventListener(type, handler, false); | ||
- | } else { | ||
- | // assign each event handler a unique ID | ||
- | if (!handler.$$guid) handler.$$guid = dean_addEvent.guid++; | ||
- | // create a hash table of event types for the element | ||
- | if (!element.events) element.events = {}; | ||
- | // create a hash table of event handlers for each element/event pair | ||
- | var handlers = element.events[type]; | ||
- | if (!handlers) { | ||
- | handlers = element.events[type] = {}; | ||
- | // store the existing event handler (if there is one) | ||
- | if (element["on" + type]) { | ||
- | handlers[0] = element["on" + type]; | ||
- | } | ||
- | } | ||
- | // store the event handler in the hash table | ||
- | handlers[handler.$$guid] = handler; | ||
- | // assign a global event handler to do all the work | ||
- | element["on" + type] = handleEvent; | ||
- | } | ||
- | }; | ||
- | // a counter used to create unique IDs | ||
- | dean_addEvent.guid = 1; | ||
- | |||
- | function removeEvent(element, type, handler) { | ||
- | if (element.removeEventListener) { | ||
- | element.removeEventListener(type, handler, false); | ||
- | } else { | ||
- | // delete the event handler from the hash table | ||
- | if (element.events && element.events[type]) { | ||
- | delete element.events[type][handler.$$guid]; | ||
- | } | ||
- | } | ||
- | }; | ||
- | |||
- | function handleEvent(event) { | ||
- | var returnValue = true; | ||
- | // grab the event object (IE uses a global event object) | ||
- | event = event || fixEvent(((this.ownerDocument || this.document || this).parentWindow || window).event); | ||
- | // get a reference to the hash table of event handlers | ||
- | var handlers = this.events[event.type]; | ||
- | // execute each event handler | ||
- | for (var i in handlers) { | ||
- | this.$$handleEvent = handlers[i]; | ||
- | if (this.$$handleEvent(event) === false) { | ||
- | returnValue = false; | ||
- | } | ||
- | } | ||
- | return returnValue; | ||
- | }; | ||
- | |||
- | function fixEvent(event) { | ||
- | // add W3C standard event methods | ||
- | event.preventDefault = fixEvent.preventDefault; | ||
- | event.stopPropagation = fixEvent.stopPropagation; | ||
- | return event; | ||
- | }; | ||
- | fixEvent.preventDefault = function() { | ||
- | this.returnValue = false; | ||
- | }; | ||
- | fixEvent.stopPropagation = function() { | ||
- | this.cancelBubble = true; | ||
- | } | ||
- | |||
- | // Dean's forEach: http://dean.edwards.name/base/forEach.js | ||
- | /* | ||
- | forEach, version 1.0 | ||
- | Copyright 2006, Dean Edwards | ||
- | License: http://www.opensource.org/licenses/mit-license.php | ||
- | */ | ||
- | |||
- | // array-like enumeration | ||
- | if (!Array.forEach) { // mozilla already supports this | ||
- | Array.forEach = function(array, block, context) { | ||
- | for (var i = 0; i < array.length; i++) { | ||
- | block.call(context, array[i], i, array); | ||
- | } | ||
- | }; | ||
- | } | ||
- | |||
- | // generic enumeration | ||
- | Function.prototype.forEach = function(object, block, context) { | ||
- | for (var key in object) { | ||
- | if (typeof this.prototype[key] == "undefined") { | ||
- | block.call(context, object[key], key, object); | ||
- | } | ||
- | } | ||
- | }; | ||
- | |||
- | // character enumeration | ||
- | String.forEach = function(string, block, context) { | ||
- | Array.forEach(string.split(""), function(chr, index) { | ||
- | block.call(context, chr, index, string); | ||
- | }); | ||
- | }; | ||
- | |||
- | // globally resolve forEach enumeration | ||
- | var forEach = function(object, block, context) { | ||
- | if (object) { | ||
- | var resolve = Object; // default | ||
- | if (object instanceof Function) { | ||
- | // functions have a "length" property | ||
- | resolve = Function; | ||
- | } else if (object.forEach instanceof Function) { | ||
- | // the object implements a custom forEach method so use that | ||
- | object.forEach(block, context); | ||
- | return; | ||
- | } else if (typeof object == "string") { | ||
- | // the object is a string | ||
- | resolve = String; | ||
- | } else if (typeof object.length == "number") { | ||
- | // the object is array-like | ||
- | resolve = Array; | ||
- | } | ||
- | resolve.forEach(object, block, context); | ||
- | } | ||
- | }; | ||
- | </script> | ||
- | <table border="0" cellspacing="5" class="sortable" style="width: 100%"> <tbody> <tr> <td style="background-color: #996633">Titre</td> <td style="background-color: #996633">Auteur</td> <td style="background-color: #996633">Type</td> <td style="background-color: #996633">Epoque</td> <td style="background-color: #009900">Appréciation A</td> <td style="background-color: #3366ff">Appréciation L</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong><a name="BD-A" title="BD-A"></a></strong><strong><a href="http://www.mondes-aldebaran.com/">Aldébaran</a> </strong></td> <td style="color: #000000; background-color: #cc6600">Léo</td> <td style="color: #000000; background-color: #cc6600">Aventure</td> <td style="color: #000000; background-color: #cc6600">XXème futuriste</td> <td style="background-color: #009900">Bien<br /> Le scénario est original et bon. Le dessin est très moyen.</td> <td style="background-color: #3366ff">Très bien</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><p> </p><p><strong>Alexe</strong></p></td> <td style="color: #000000; background-color: #cc6600">Delaney, Oleffe</td> <td style="color: #000000; background-color: #cc6600">Aventure, Business</td> <td style="color: #000000; background-color: #cc6600">XXème</td> <td style="background-color: #009900">Bien<br /> Scénario intéressant, dessin correct.</td> <td style="background-color: #3366ff">Moyen</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><a href="http://www.alixintrepide.org/"><strong>Alix</strong></a> </td> <td style="color: #000000; background-color: #cc6600">J Martin</td> <td style="color: #000000; background-color: #cc6600">Aventure</td> <td style="color: #000000; background-color: #cc6600">Antique</td> <td style="background-color: #009900">Moyen<br /> Trame souvent compliquée</td> <td style="background-color: #3366ff">?</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><p> </p><p><strong>Arcanes</strong></p></td> <td style="color: #000000; background-color: #cc6600">Pignault, Pecau</td> <td style="color: #000000; background-color: #cc6600">Science-fiction, ésotérique</td> <td style="color: #000000; background-color: #cc6600">Futur</td> <td style="background-color: #009900">Bien<br /> Les scénarios sont un peu compliqués</td> <td style="background-color: #3366ff">Bien +</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong><a href="http://www.asterix.tm.fr/">Astérix</a></strong></td> <td style="color: #000000; background-color: #cc6600">Uderzo, Goscinny</td> <td style="color: #000000; background-color: #cc6600">Classique, humour</td> <td style="color: #000000; background-color: #cc6600">Débuts de la Gaule</td> <td style="background-color: #009900">Très bien<br /> Certains tomes sont des trésors d'humour et de jeux de mots</td> <td style="background-color: #3366ff">Excellent<br /> Les traductions anglaises sont excellentes</td> </tr> <tr><td style="background-color: #cc6600"><p> </p><p> </p><p><strong>Au delà des nuages</strong> </p></td><td style="background-color: #cc6600">Hautière, Hugault </td><td style="background-color: #cc6600">Classique, historique </td><td style="background-color: #cc6600">Avant la 2ème guerre mondiale </td><td style="background-color: #009900"><p>Bien</p><p>Dans la même lignée que "le dernier envol", mais meilleur que ce dernier (meilleur scénario, pour des dessins aussi bons).</p><p>Bonne ambiance aéronautique. </p></td><td style="background-color: #3366ff"> Très bien. Le scénario est correct, les dessins d'avion sublimes de réalisme.<br /></td></tr><tr><td style="background-color: #cc6600"><p> </p><div style="text-align: center"><img src="http://axelle.apvrille.free.fr/images/bdcouv/BetelgeuseIntegrale.jpg" alt="" /></div> <p><a href="http://www.mondes-aldebaran.com/"><strong>Betelgeuse </strong></a> </p></td><td style="background-color: #cc6600">Leo </td><td style="background-color: #cc6600">Aventure </td><td style="background-color: #cc6600">XXème futuriste</td><td style="background-color: #cc6600"> </td><td style="background-color: #cc6600"> </td></tr><tr> <td style="color: #000000; background-color: #cc6600"><p> </p> <br /><p> </p><p><strong><a href="http://www.blakeetmortimer.com/">Blake et Mortimer</a></strong></p></td> <td style="color: #000000; background-color: #cc6600">EP Jacobs</td> <td style="color: #000000; background-color: #cc6600">Classique, Science-fiction</td> <td style="color: #000000; background-color: #cc6600">Début XXème, mais vision futuriste</td> <td style="background-color: #009900">Excellent<br /> Un chef d'oeuvre du style classique.</td> <td style="background-color: #3366ff">Moyen<br /> Scénario très bien (un peu compliqué), dessin moyen</td> </tr> <tr> <td style="background-color: #cc6600; color: #000000"><strong><a href="http://en.wikipedia.org/wiki/Bone_%28comics%29">Bone </a> (The great cow race)</strong></td> <td style="background-color: #cc6600; color: #000000">Jeff Smith</td> <td style="background-color: #cc6600; color: #000000">Classique, humoristique</td> <td style="background-color: #cc6600; color: #000000">Actuel</td> <td style="background-color: #009900">Moyen<br /> Un peu délire, distrayant, mais rien d'extraordinaire</td> <td style="background-color: #3366ff">Bien<br /> Histoire un peu embrouillée</td> </tr> <tr> <td style="background-color: #cc6600; color: #000000"><p> </p><p><strong>Carmen McCallum</strong></p></td> <td style="background-color: #cc6600; color: #000000">Gess, Duval</td> <td style="background-color: #cc6600; color: #000000">Science-fiction</td> <td style="background-color: #cc6600; color: #000000">Futuriste</td> <td style="background-color: #009900">Bien<br /> Assez classique pour une BD de science fiction, mais bon.</td> <td style="background-color: #3366ff">Bien +. Scénario un peu trop au cowboy américain du futur. </td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><p><strong><a name="BD-D" title="BD-D"></a></strong></p><div style="text-align: center"><img src="http://axelle.apvrille.free.fr/images/bdcouv/decalogue01.jpg" alt="" /></div><p> </p><p><strong>Le décalogue</strong></p></td> <td style="color: #000000; background-color: #cc6600">Divers</td> <td style="color: #000000; background-color: #cc6600">Aventure</td> <td style="color: #000000; background-color: #cc6600">XXème</td> <td style="background-color: #009900">Bien<br /> L'idée de relater la même histoire sous différents angles est originale.<br /> Mais les tomes sont très inégaux. Le premier est bon, mais tous ne sont pas comme celui-là.</td> <td style="background-color: #3366ff">Très bien</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong>Donjon</strong></td> <td style="color: #000000; background-color: #cc6600">Sfar, Trondheim</td> <td style="color: #000000; background-color: #cc6600">Fantastique, Humoristique</td> <td style="color: #000000; background-color: #cc6600">Médiéval futuriste</td> <td style="background-color: #009900">Bien<br /> Le dessin est simple, mais l'humour décalé est présent de partout.<br /> Une préférence pour Donjon Parade.</td> <td style="background-color: #3366ff">Donjon Parade: très bien</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><div style="text-align: center"><img src="http://axelle.apvrille.free.fr/images/bdcouv/dernierenvol.jpg" alt="" /></div><p><strong>Le dernier envol</strong></p></td> <td style="color: #000000; background-color: #cc6600">Romain Hugault</td> <td style="color: #000000; background-color: #cc6600">Classique, Historique</td> <td style="color: #000000; background-color: #cc6600">2ème guerre mondiale</td> <td style="background-color: #009900">Bien<br /> Beaux dessins, mais le scénario est un peu décevant.</td> <td style="background-color: #3366ff">Bien +<br /> Les dessins sont beaux</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><p align="center"> <br /></p><p><strong>Les femmes en blanc</strong></p></td> <td style="color: #000000; background-color: #cc6600">Cauvin, Bircovici</td> <td style="color: #000000; background-color: #cc6600">Humour</td> <td style="color: #000000; background-color: #cc6600">Actuel</td> <td style="background-color: #009900">Bien<br /> Les derniers tomes commencent à être répétitifs</td> <td style="background-color: #3366ff">Bien +<br /> Les derniers tomes se renouvellent moins</td> </tr> <tr><td style="color: #000000; background-color: #cc6600">Finkel </td><td style="color: #000000; background-color: #cc6600">Gine, Convard </td><td style="color: #000000; background-color: #cc6600">Science fiction / Féérique<br /> </td><td>Futuriste </td><td style="background-color: #009900">Bien, mais dessins moyens </td><td style="background-color: #3366ff"> </td></tr><tr> <td style="color: #000000; background-color: #cc6600"><p> </p><p><strong>Fox</strong></p></td> <td style="color: #000000; background-color: #cc6600">Charles, Dufaux</td> <td style="color: #000000; background-color: #cc6600">Aventure</td> <td style="color: #000000; background-color: #cc6600">Mi XXème</td> <td style="background-color: #009900">Bien<br /> Scénario un peu compliqué mais intéressant. </td> <td style="background-color: #3366ff">Bien +</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><p> </p><div style="text-align: center"><img src="http://axelle.apvrille.free.fr/images/bdcouv/garulfo01.jpg" alt="" /></div> <p><strong>Garulfo</strong></p></td> <td style="color: #000000; background-color: #cc6600">Ayroles, Maïorana</td> <td style="color: #000000; background-color: #cc6600">Fantastique, Humoristique</td> <td style="color: #000000; background-color: #cc6600">Médiéval</td> <td style="background-color: #009900">Très bien +<br /> Les tomes du milieu sont les meilleurs, le dessin est moyen mais s'affirme en route et l'humour est excellent.<br /> A regretter, il y a peut être un tome de "trop" au total.</td> <td style="background-color: #3366ff">Excellent +</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><p> </p><div style="text-align: center"><img src="http://axelle.apvrille.free.fr/images/bdcouv/GoldenCity01.jpg" alt="" /></div> <p><strong><a href="http://www.chez.com/goldencity/">Golden City</a></strong></p></td> <td style="color: #000000; background-color: #cc6600">Pecqueur, Malfin</td> <td style="color: #000000; background-color: #cc6600">Science-fiction</td> <td style="color: #000000; background-color: #cc6600">Futuriste</td> <td style="background-color: #009900">Très bien<br /> Le scénario est très bon. Le dessin est beau sans plus.</td> <td style="background-color: #3366ff">Bien</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><p align="center"><img src="http://axelle.apvrille.free.fr/images/bdcouv/histoiresecretetome01.jpg" alt="" /> <br /></p><p><strong>Histoire secrète</strong></p></td> <td style="color: #000000; background-color: #cc6600">Pécau, Kordey</td> <td style="color: #000000; background-color: #cc6600">Fantastique, Esotérique </td> <td style="color: #000000; background-color: #cc6600">Antique</td> <td style="background-color: #009900">Bien -<br /> Scénarios très compliqués. Dessins intéressants</td> <td style="background-color: #3366ff">Bien<br /> Bon dessins, idée bonne, scénarios compliqués</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><p> </p><div style="text-align: center"><img src="http://axelle.apvrille.free.fr/images/bdcouv/ian02.jpg" alt="" /></div> <br /><br /><p><strong>IAN</strong></p></td> <td style="color: #000000; background-color: #cc6600">Vehlmann, Meyer</td> <td style="color: #000000; background-color: #cc6600">Science-fiction</td> <td style="color: #000000; background-color: #cc6600">Futur</td> <td style="background-color: #009900">Très bien<br /> Scénario très bon, et dessins plutôt bons</td> <td style="background-color: #3366ff">Moyen</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><p> </p><div style="text-align: center"><img src="http://axelle.apvrille.free.fr/images/bdcouv/indiadreams01.jpg" alt="" /></div> <br /><p> </p><p><strong>India Dreams</strong></p></td> <td style="color: #000000; background-color: #cc6600">JF et Maryse Charles</td> <td style="color: #000000; background-color: #cc6600">Aventure, Drame</td> <td style="color: #000000; background-color: #cc6600">Début XXème</td> <td style="background-color: #009900">Excellent<br /> Superbes dessins !</td> <td style="background-color: #3366ff">Très bien<br /> Un peu à l'eau de rose</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong>I.N.R.I</strong></td> <td style="color: #000000; background-color: #cc6600">Convard, Wachs, Falque</td> <td style="color: #000000; background-color: #cc6600">Esotérique</td> <td style="color: #000000; background-color: #cc6600">XX ème</td> <td style="background-color: #009900">Moyen<br /> Un peu trop de tomes.</td> <td style="background-color: #3366ff">Très bien</td> </tr> <tr> <td style="background-color: #cc6600; color: #000000"><p> </p><div style="text-align: center"><img src="http://axelle.apvrille.free.fr/images/bdcouv/kaputetzosky01.jpg" alt="" /></div> <br /><p> </p><p><strong>Kaput & Zösky</strong></p></td> <td style="background-color: #cc6600; color: #000000">Lewis Trondheim</td> <td style="background-color: #cc6600; color: #000000">Humoristique, science-ficion</td> <td style="background-color: #cc6600; color: #000000">Futur</td> <td style="background-color: #009900">Très bien<br /> Humour décapant !<br /> Mais je n'en lirais pas 15 tomes<br /> Dessins mignons mais quelconques (mais ce n'est pas grave pour ce style de BD)</td> <td style="background-color: #3366ff">Excellent<br /> Très original</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong><a name="BD-L" title="BD-L"></a><a href="http://www.largowinch.com">Largo Winch</a></strong></td> <td style="color: #000000; background-color: #cc6600">Van Hamme, Francq</td> <td style="color: #000000; background-color: #cc6600">Business</td> <td style="color: #000000; background-color: #cc6600">XXème</td> <td style="background-color: #009900">Moyen<br /> En fait, les scénarios et les dessins sont corrects, mais ça fait un peu série typique à rallonge pour se faire de l'argent...</td> <td style="background-color: #3366ff">Moyen</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong><a href="http://arleston.free.fr/lanfeust.html">Lanfeust de Troy</a></strong></td> <td style="color: #000000; background-color: #cc6600">Arleston, Tarquin</td> <td style="color: #000000; background-color: #cc6600">Fantastique, Humoristique</td> <td style="color: #000000; background-color: #cc6600">Médiéval futuriste</td> <td style="background-color: #009900">Bien, à lire<br /> Humour un peu lourd. Cixi est agaçante !</td> <td style="background-color: #3366ff">Excellent +</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong>Lanfeust des Etoiles</strong></td> <td style="color: #000000; background-color: #cc6600">Arleston, Tarquin</td> <td style="color: #000000; background-color: #cc6600">Science-fiction, Humoristique</td> <td style="color: #000000; background-color: #cc6600">Futur</td> <td style="background-color: #009900">Moyen<br /> S'épuise, blagues de moins en moins fines</td> <td style="background-color: #3366ff">Bien<br /> Force un peu pour sortir un tome, mais le style est présent</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong>Les aventures de Lefranc</strong></td> <td style="color: #000000; background-color: #cc6600">Martin</td> <td style="color: #000000; background-color: #cc6600">Classique, policier</td> <td style="color: #000000; background-color: #cc6600">XXème</td> <td style="background-color: #009900">Bien <br /> Le scénario et le texte sont fouillés, une BD qu'on prend plaisir à relire en détails</td> <td style="background-color: #3366ff">Bien +<br /> Scénario bien faits</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong>Kenya</strong></td> <td style="color: #000000; background-color: #cc6600">Rodolphe, Léo</td> <td style="color: #000000; background-color: #cc6600">Aventure</td> <td style="color: #000000; background-color: #cc6600">XXème futuriste</td> <td style="background-color: #009900">Moyen<br /> Dessins moyens, scénario pas mal.<br /> Dans la même lignée qu'Aldebaran, mais moins bien.</td> <td style="background-color: #3366ff">Très bien<br /> Fin assez inattendue</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong>Mégalex</strong></td> <td style="color: #000000; background-color: #cc6600">Jodorowsky, Beltran</td> <td style="color: #000000; background-color: #cc6600">Science-fiction</td> <td style="color: #000000; background-color: #cc6600">Futur</td> <td style="background-color: #009900">Passable<br /> Les dessins sont trop retouchés par ordinateur à mon goût.<br /> Scénario moyen.</td> <td style="background-color: #3366ff">Moyen +</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><p align="center"><img src="http://axelle.apvrille.free.fr/images/bdcouv/cercledeminsk01.jpg" alt="" /> <br /></p><p><strong>Le cercle de Minsk</strong></p></td> <td style="color: #000000; background-color: #cc6600">Giroud, Stalner</td> <td style="color: #000000; background-color: #cc6600">Aventure</td> <td style="color: #000000; background-color: #cc6600">XXème</td> <td style="background-color: #009900">Bien.<br /> Scénario assez intéressant et dessins pas mal. Juste pas très original.</td> <td style="background-color: #3366ff">Très bien</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong><a href="http://www.lucky-luke.com/">Lucky Luke</a></strong></td> <td style="color: #000000; background-color: #cc6600">Morris, Goscinny</td> <td style="color: #000000; background-color: #cc6600">Classique, Aventure</td> <td style="color: #000000; background-color: #cc6600">Far west</td> <td style="background-color: #009900">Bien -<br /> Les tomes sont inégaux, mais c'est un incontournable du genre</td> <td style="background-color: #3366ff">Bien<br /> Les Dalton amènent un +<br /> Un peu répétitif</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong>Moréa</strong></td> <td style="color: #000000; background-color: #cc6600">Arleston, Labrosse</td> <td style="color: #000000; background-color: #cc6600">Science-fiction</td> <td style="color: #000000; background-color: #cc6600">Futur</td> <td style="background-color: #009900">Bien<br /> Tome 3 inutilement dénudé<br /> Tomes de moins en moins bons</td> <td style="background-color: #3366ff">Bien.<br /> Dessins se dégradent. Cul un peu exploité !<br /> Tome 1 meilleur.</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><p> </p><div style="text-align: center"><img src="http://axelle.apvrille.free.fr/images/bdcouv/Orbital1.jpg" alt="" /></div> <br /><p> </p><p><strong>Orbital</strong><a name="BD-O" title="BD-O"></a></p></td> <td style="color: #000000; background-color: #cc6600">Pelle, Runberg</td> <td style="color: #000000; background-color: #cc6600">Science-fiction</td> <td style="color: #000000; background-color: #cc6600">Futur</td> <td style="background-color: #009900">Excellent <br /> Le premier tome est vraiment très prometteur tant au niveau du scénario que des dessins.</td> <td style="background-color: #3366ff">Excellent</td> </tr><tr> <td style="color: #000000; background-color: #cc6600"><strong>Persepolis</strong><br /></td> <td style="color: #000000; background-color: #cc6600">Satrapi <br /></td> <td style="color: #000000; background-color: #cc6600">Autobiographie<br /></td> <td style="color: #000000; background-color: #cc6600">Années 80<br /></td> <td style="background-color: #009900">Bien. Très intéressant, mais tout sauf "distrayant" / "détendant" ! Une préférence pour le tome 2<br /></td> <td style="background-color: #3366ff">Très bien. L'autobiographie est interessante, on se retrouve plongé dans la dictature iranienne, vue par une iranienne ! </td> </tr> <tr> <td style="background-color: #cc6600; color: #000000"><strong><a href="http://www.bdnet.com/9782844141132/alb.htm">Pyong Yang</a></strong></td> <td style="background-color: #cc6600; color: #000000">Guy Delisle</td> <td style="background-color: #cc6600; color: #000000">Classique, humoristique</td> <td style="background-color: #cc6600; color: #000000">XXème</td> <td style="background-color: #009900">Très bien. Un peu cynique parfois, mais ça sent le vécu !</td> <td style="background-color: #3366ff">Excellent</td> </tr> <tr><td style="background-color: #cc6600"><strong>Quartier Lointain</strong></td><td style="background-color: #cc6600"> Jiro Taniguchi</td><td style="background-color: #cc6600"> Manga, drame</td><td style="background-color: #cc6600"> XXème</td><td style="background-color: #009900"> Très bien<br /> Le scénario est très bon et les deux tomes se lisent à toute vitesse.</td><td style="background-color: #3366ff">Très bien<br /> Scénario très original</td></tr><tr> <td style="color: #000000; background-color: #cc6600"><p> </p><div style="text-align: center"><img src="http://axelle.apvrille.free.fr/images/bdcouv/RoiCyclope01.jpg" alt="" /></div> <br /><p> </p><p><strong>Le Roi Cyclope</strong></p></td> <td style="color: #000000; background-color: #cc6600">Isabelle Dethan</td> <td style="color: #000000; background-color: #cc6600">Fantastique</td> <td style="color: #000000; background-color: #cc6600">Médiéval futuriste</td> <td style="background-color: #009900">Très bien<br /> Superbes dessins, mais un peu sombre.<br /> Tome 3 plus coloré</td> <td style="background-color: #3366ff">Très bien</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong>Le roi méduse</strong></td> <td style="color: #000000; background-color: #cc6600">Szalewa, Ségur</td> <td style="color: #000000; background-color: #cc6600">Fantastique</td> <td style="color: #000000; background-color: #cc6600">Médiéval futuriste</td> <td style="background-color: #009900">Passable.<br /> Scénario peu compréhensible<br /> Dessins moyens</td> <td style="background-color: #3366ff">Bof</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong>Route 666</strong></td> <td style="color: #000000; background-color: #cc6600">Tony Bedard, Karl Moline</td> <td style="color: #000000; background-color: #cc6600">Science fiction</td> <td style="color: #000000; background-color: #cc6600">XXème</td> <td style="background-color: #009900">Bien<br /> A ne pas lire le soir avant de dormir !<br /> </td> <td style="background-color: #3366ff">Bien<br /> Dessins un peu trop "ordinatorés"</td> </tr> <tr> <td style="background-color: #cc6600; color: #000000"><strong><br /></strong></td> <td style="background-color: #cc6600; color: #000000"> </td> <td style="background-color: #cc6600; color: #000000"> </td> <td style="background-color: #cc6600; color: #000000"> </td> <td style="background-color: #009900"> </td> <td style="background-color: #3366ff"> </td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong>Schtroumpfs</strong></td> <td style="color: #000000; background-color: #cc6600">Peyo</td> <td style="color: #000000; background-color: #cc6600">Humoristique</td> <td style="color: #000000; background-color: #cc6600">Intemporel</td> <td style="background-color: #009900">Moyen<br /> Une référence, mais pour enfants uniquement</td> <td style="background-color: #3366ff">Gentil ! <br /> Moyen</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong>Sojourn</strong></td> <td style="color: #000000; background-color: #cc6600">Marz, Land</td> <td style="color: #000000; background-color: #cc6600">Fantastique</td> <td style="color: #000000; background-color: #cc6600">Médiéval futuriste</td> <td style="background-color: #009900">Très bien<br /> Bon scénario, fin inattendue<br /> Dessins très retouchés par ordinateur</td> <td style="background-color: #3366ff">Bien<br /> Original<br /> Une rare BD nord américaine.<br /> Un peu ordinatorée !</td> </tr> <tr><td style="background-color: #cc6600"><p> </p><div style="text-align: center"><img src="http://axelle.apvrille.free.fr/images/bdcouv/RogueSquadron.jpg" alt="" /></div> <br /><p> </p><p><strong>Star Wars X-Wing Rogue Squadron</strong> <br /></p></td><td style="background-color: #cc6600"> Stradley, Windham, Janes<br /></td><td style="background-color: #cc6600">Science fiction </td><td style="background-color: #cc6600">Futuriste <br /></td><td style="background-color: #009900"><p>Bien. Le premier chapitre est moins intéressant, et il est difficile de repérer les personnages.</p><p>Bonne ambiance de bataille Star Wars </p></td><td style="background-color: #3366ff"> </td></tr><tr> <td style="color: #000000; background-color: #cc6600"><strong><a href="http://www.thorgal.com/index2.html">Thorgal</a></strong></td> <td style="color: #000000; background-color: #cc6600">Rosinski, Van Hamme</td> <td style="color: #000000; background-color: #cc6600">Aventure</td> <td style="color: #000000; background-color: #cc6600">Médiéval</td> <td style="background-color: #009900">Moyen<br /> Scénario très classique</td> <td style="background-color: #3366ff">Moyen +</td> </tr> <tr> <td style="background-color: #cc6600; color: #000000"><p align="center"><img src="http://axelle.apvrille.free.fr/images/bdcouv/Tiffany1.jpg" alt="" /> <br /></p><p><strong>Tiffany</strong></p></td> <td style="background-color: #cc6600; color: #000000">Yann, Herval</td> <td style="background-color: #cc6600; color: #000000">Aventure</td> <td style="background-color: #cc6600; color: #000000">XXème</td> <td style="background-color: #009900">Bien +<br /> Le contexte de la BD est assez original (escrime, femme, visions)</td> <td style="background-color: #3366ff">Bien<br /> Pas très original. </td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong><a name="BD-T" title="BD-T"></a><a href="http://www.tintin.com/">Tintin</a></strong></td> <td style="color: #000000; background-color: #cc6600">Hergé</td> <td style="color: #000000; background-color: #cc6600">Classique</td> <td style="color: #000000; background-color: #cc6600">XXème</td> <td style="background-color: #009900">Très bien<br /> Le plus classique des classiques, mais incontournable !<br /> Quelques tomes sont meilleurs que d'autres : le Lotus Bleu, l'Ile Noire etc.</td> <td style="background-color: #3366ff">Excellent</td> </tr> <tr><td style="color: #000000; background-color: #cc6600"> Tramp</td><td style="color: #000000; background-color: #cc6600"> Kraehn, Jusseaume<br /></td><td style="color: #000000; background-color: #cc6600">Classique </td><td>XXème </td><td style="background-color: #009900">Bien. Une BD qui traite d' l'univers de la marine marchande, ce qui est peu courant.</td><td style="background-color: #3366ff"> </td></tr><tr> <td style="color: #000000; background-color: #cc6600"><strong><a href="http://askell.free.fr/">Trolls de Troy</a></strong></td> <td style="color: #000000; background-color: #cc6600">Arleston, Mourier</td> <td style="color: #000000; background-color: #cc6600">Fantastique, Humoristique</td> <td style="color: #000000; background-color: #cc6600">Médiéval, futuriste</td> <td style="background-color: #009900">Bien. L'humour est un peu lourd, et les tomes sont inégaux, mais les BDs se lisent bien.</td> <td style="background-color: #3366ff">Bien +<br /> Bcp d'humour</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><p align="center"> <br /></p><p><strong><a href="http://www.tuniques-bleues.com/">Les tuniques bleues</a></strong></p></td> <td style="color: #000000; background-color: #cc6600">Salverius, Cauvin, Lambil</td> <td style="color: #000000; background-color: #cc6600">Classique, Humoristique</td> <td style="color: #000000; background-color: #cc6600">guerre de sécession</td> <td style="background-color: #009900">Moyen<br /> Humour un peu facile</td> <td style="background-color: #3366ff">Moyen -</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong>Universal War</strong></td> <td style="color: #000000; background-color: #cc6600">Bajram</td> <td style="color: #000000; background-color: #cc6600">Science-fiction</td> <td style="color: #000000; background-color: #cc6600">Futur</td> <td style="background-color: #009900">Moyen +<br /> Scénario un peu complexe.</td> <td style="background-color: #3366ff">Bien -</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><p> </p><div style="text-align: center"><img src="http://axelle.apvrille.free.fr/images/bdcouv/vlad01.jpg" alt="" /></div> <br /><p> </p><p><strong>Vlad</strong></p></td> <td style="color: #000000; background-color: #cc6600">Swolfs, Griffo</td> <td style="color: #000000; background-color: #cc6600">Science-fiction</td> <td style="color: #000000; background-color: #cc6600">XXIème, futuriste</td> <td style="background-color: #009900">Bien<br /> Scénario classique mais bon. Dessins corrects</td> <td style="background-color: #3366ff">Très bien<br /> Scénario un peu classique</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><p align="center"><img src="http://axelle.apvrille.free.fr/images/bdcouv/volducorbeau01.jpg" alt="" /> <br /></p><p><strong>Vol du corbeau</strong></p></td> <td style="color: #000000; background-color: #cc6600">Gibrat</td> <td style="color: #000000; background-color: #cc6600">Drame</td> <td style="color: #000000; background-color: #cc6600">2nde guerre mondiale</td> <td style="background-color: #009900">Très bien<br /> Scénario bon, mais surtout le dessin est hors du commun<br /> Regret: un peu politisé !<br /> </td> <td style="background-color: #3366ff">Excellent<br /> Dessins superbes !<br /> "Exploite" un peu la jolie fille...</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong><a name="BD-X" title="BD-X"></a><a href="http://www.treize.com/">XIII</a></strong></td> <td style="color: #000000; background-color: #cc6600">Van Hamme, Vance</td> <td style="color: #000000; background-color: #cc6600">Aventure</td> <td style="color: #000000; background-color: #cc6600">XXème</td> <td style="background-color: #009900">Moyen<br /> Un peu trop rambo en BD ;-)<br /> Le scénario initial est bon, mais la série a trop continué</td> <td style="background-color: #3366ff">Moyen</td> </tr> <tr> <td style="color: #000000; background-color: #cc6600"><strong><a href="http://yoko.tsuno.free.fr/">Yoko Tsuno</a></strong></td> <td style="color: #000000; background-color: #cc6600">Roger Leloup</td> <td style="color: #000000; background-color: #cc6600">Aventure, Science-fiction</td> <td style="color: #000000; background-color: #cc6600">XXème</td> <td style="background-color: #009900">Très bien, mais pour enfants ou adolescents</td> <td style="background-color: #3366ff">Bien</td> </tr> <tr> </tr> <tr> </tr> </tbody> </table></html> |