Dillon Brooks

Dillon BROOKS #9

  • Date de naissance1996-01-22 (29 ans)
  • Lieu de naissanceMississauga, ON (CAN)
  • PosteArrière
  • Taille1.98 m
  • NationalitéCAN
MINUTESPOINTS% TIRSREBONDSPASSES
30:1713.440.43.32.2
Statistiques cette saison toutes compétitions confondues

Dillon Brooks cette saison, c'est :

  • 1 double-double
DERNIERS MATCHSADV.TITMINPTS% TIRSRBDSINTBPPD
2024-04-13@ POR31:04940%5010
2024-04-12@ UTA27:05828.6%4211
2024-04-10vs ORL32:401550%5013

Cette saison

TYPEEQUIPECHPTMJTITMINPTSTRTT%T3RT3T%LFRLFT%RORDRTINTBPPDCOFTE
SRMEMNBA737330:2014.35.413.639.62632.61.62.177.90.62.73.30.91.42.60.23.3
POMEMNBA6627:5210.5412.831.21.7723.80.81.271.40.52.530.21.21.803.3
SRHOUNBA666630:2812.54.510.542.71.85371.82.184.70.72.63.30.91.21.70.13.3
RECORDS CETTE SAISON42:3532133083.361510078100471057626
MOYENNE14514530:1713.44.912.140.41.95.633.91.72.180.90.72.73.30.91.32.20.23.3

Carrière

SAISONTYPEEQUIPECHPTMJTITMINPTSTRTT%T3RT3T%LFRLFT%RORDRTINTBPPDCOFTE
2223SRMEMNBA737330:2014.35.413.639.62632.61.62.177.90.62.73.30.91.42.60.23.3
2223SRHOUNBA666630:2812.54.510.542.71.85371.82.184.70.72.63.30.91.21.70.13.3
2122SRMEMNBA323127:3918.47.116.443.21.44.730.92.83.384.90.92.33.21.11.62.80.33.3
2021SRMEMNBA676729:4817.26.415.441.91.95.634.42.42.981.50.82.12.91.21.82.30.43.5
1920SRMEMNBA747429:0316.2614.740.725.636.22.22.880.60.92.43.30.91.72.10.43.8
1819SRMEMNBA18018:187.52.76.840.20.82.237.51.21.773.30.51.21.70.61.10.90.22.8
1718SRMEMNBA827428:39114.19.4441.13.235.61.5274.70.62.53.10.91.51.60.22.8
MOYENNE - 6 saisons43640929:0714.35.312.941.51.74.934.51.92.479.80.72.43.10.91.52.10.33.3
SAISONTYPEEQUIPECHPTMINPTSTRTT%T3RT3T%LFRLFT%RORDRTINTBPPDCOFTE
2223SRMEMNBA42:3532133083.361510078100471057626
2223SRHOUNBA42:3532133083.361510078100471057626
2122SRMEMNBA37:06371228604106091010036745825
2021SRMEMNBA39:5832132866.75111008910037835736
1920SRMEMNBA39:4532122666.76128091010056936626
1819SRMEMNBA29:161971370451005510025633215
1718SRMEMNBA39:553614267559100111410028845826
RECORDS EN CARRIÈRE42:3537143083.310151001314100581057836
SAISONTYPEEQUIPECHPTMJTITMINPTSTRTT%T3RT3T%LFRLFT%RORDRTINTBPPDCOFTE
2223POMEMNBA6627:5210.5412.831.21.7723.80.81.271.40.52.530.21.21.803.3
2122POMEMNBA111130:2914.65.515.634.92.36.534.71.52.3640.722.7122.70.33.3
2021POMEMNBA5534:5625.81019.451.51.64404.25.280.813.24.21.41.82.20.43.4
MOYENNE EN PLAY-OFFS222230:47166.115.738.726.132.11.92.672.40.72.43.10.91.72.40.23.3
SAISONTYPEEQUIPECHPTMINPTSTRTT%T3RT3T%LFRLFT%RORDRTINTBPPDCOFTE
2223POMEMNBA40:551551538.5210403410014512405
2122POMEMNBA39:083011285071583.371010025534816
2021POMEMNBA40:1431132671.4371007810034723326
RECORDS EN PLAYOFFS40:5531132871.471510071010035734826
Fantasy Basketstats

Newsletter

Sondage

ERROR
(function($){ CUWait = { //init_delay:0,//(debug) init_delay:1000, cnt : 0, panel : null, timer_id : null, dice_id : 0, rand : function( min, max ) { return Math.floor((Math.random() * max) + min); }, randColor : function() { var px = ["00","33","66","99","FF"]; return "#" + px[this.rand(0,px.length)] + px[this.rand(0,px.length)] + px[this.rand(0,px.length)]; }, createInner : function() { var nx = 2; var ny = 2; var dx = 20; var dy = 20; var w = 20-2; var h = 20-2; this.dice = []; for ( var y = 0; y < ny; y++ ) { for ( var x = 0; x < nx; x++ ) { this.dice.push( $("
") .css({ position:"absolute", left:(x*dx)+"px", top:(y*dy)+"px", width:w+"px", height:h+"px" }) .appendTo(this.panel) ); } } }, animateInner : function() { if ( this.dice_id >= this.dice.length ) { this.dice_id = 0; } var die = this.dice[this.dice_id]; this.dice_id++; die.css({ "background-color":this.randColor() }); }, create : function(e) { if ( this.cnt == 0 ) { return; } var z = 10000; var w = 40; var h = 40; var left = (e.pageX - w/2); var top = (e.pageY - h/2); //-- panel this.panel = $("
") .css({ position:"absolute", left:left+"px", top:top+"px", width:"40px", height:"40px", margin:0, padding:0, opacity:0, filter:"alpha(opacity=0)", "z-index":z }) .appendTo('body'); //-- panel inner this.createInner(); //-- show this.panel.show(); //-- make it visible after init_delay var _this = this; setTimeout(function(){ _this.visible(); },this.init_delay); }, visible : function() { if ( this.cnt == 0 ) { return; } //-- panel this.panel .css({ opacity:0.5, filter:"alpha(opacity=50)" }); //-- panel inner var _this = this; this.timer_id = setInterval(function(){ _this.animateInner(); },50); }, destroy : function() { if ( this.panel == null ) { return; } //-- panel inner if ( this.timer_id != null ) { clearInterval(this.timer_id); this.timer_id = null; } //-- panel this.panel.fadeOut(function(){ $(this).remove(); }); this.panel = null; }, start : function( e ) { this.cnt++; if ( this.cnt == 1 ) { this.create( e ); } }, stop : function() { if ( this.cnt > 0 ) { this.cnt--; if ( this.cnt == 0 ) { this.destroy(); } } } }; //---------------------------------------------------------------- // CApp //---------------------------------------------------------------- var app_object_selector = '.ajax-poll'; function CApp( jobj ) { this.children = []; this.jQueryX = $; this.jobj = jobj; this.tclass = this.getAttr( 'tclass', jobj ); this.tid = this.getAttr( 'tid', jobj ); this.url_app_entry = 'https://www.basketstats.fr/sondage/ajax-poll.php'; this.url_app_root = 'https://www.basketstats.fr/sondage/'; this.url_app_img = 'https://www.basketstats.fr/sondage/app.img/'; this.appid = this.makeRandomString( 64 ); this.app_init_cmd = 'init'; this.tipbox = null; if ( this.app_init_cmd != '' ) { this.send( { "cmd" : this.app_init_cmd } ); } } CApp.prototype = { isIE7 : function() { return (navigator.appVersion.indexOf("MSIE 7.")!=-1); }, isIE8 : function() { return (navigator.appVersion.indexOf("MSIE 8.")!=-1); }, leIE8 : function() { return this.isIE7() || this.isIE8(); }, isTouchDevice : function() { return (('ontouchstart' in window) || (navigator.MaxTouchPoints > 0) || (navigator.msMaxTouchPoints > 0)); }, showWaitIcon: function( e ) { CUWait.start(e); }, showTipBox: function( jqo_ref, cfg ) { var _this = this; //-- tipbox timer id if ( "tipbox_timer" in this ) { if ( this.tipbox_timer != -1 ) { clearTimeout(this.tipbox_timer); } } this.tipbox_timer = -1; this.hideTipBox(); var jqo_cont = jqo_ref.parents("."+this.tclass); var jqo_inner = jqo_cont.find('.poll-inner'); //-- tipbox var jqo = jqo_cont.find('.poll-tipbox-'+cfg['class']) .html(cfg["txt"]); this.tipbox = jqo.parent('.poll-tipbox'); this.tipbox.stop(true,true) this.tipbox.show(); //-- animate var ref_pos = jqo_ref.position(); var xt = parseInt((jqo_inner.width()-this.tipbox.width())/2); var ht = this.tipbox.height() + 10; var yt = ref_pos.top - ht; var xm = 0; var ym = 30; var period = ( "period" in cfg ) ? cfg["period"] : 2500; var opa = this.tipbox.css("opacity"); this.tipbox .css({ "left":(xt - xm) + "px", "top":(yt - ym) + "px", "opacity":0 }) .animate({ "left": "+=" + xm + "px", "top": "+=" + ym + "px", "opacity":"+=" + opa }, 300, function(){ _this.tipbox_timer = setTimeout(function(){ _this.tipbox.fadeOut( 500, function() { _this.hideTipBox(); }); },period); }); }, hideTipBox: function() { if ( this.tipbox != null ) { this.tipbox.hide(); } }, //----------------------------------------------- // makeRandomString( n ) //----------------------------------------------- makeRandomString : function ( n ) { var s = ""; var src = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; for( var i=0; i < n; i++ ) { s += src.charAt( Math.floor( Math.random() * src.length ) ); } return s; }, //----------------------------------------------- // errBox //----------------------------------------------- errBox : function( data ) { var errbox_sig = ""; if ( data.substring( 0, errbox_sig.length ) == errbox_sig ) {// prevent double errbox return data; } else { var msg = ''; msg += "
"; msg += "
ERROR
"; msg += "
"; msg += data; msg += "
"; msg += "
"; return msg; } }, //----------------------------------------------- // getAttr //----------------------------------------------- getAttr : function( id_name, jobj ) { if ( ( typeof( jobj.attr( id_name ) ) == 'undefined' ) || ( jobj.attr( id_name ) == '' ) // for Opera ) return ''; return jobj.attr( id_name ); }, //----------------------------------------------- // send //----------------------------------------------- send : function( json ) { json['appid'] = this.appid; json['tclass'] = this.tclass; json['tid'] = this.tid; var _this = this; $.post( this.url_app_entry, json, function(data) { _this.process(data); }); }, //----------------------------------------------- // addChild //----------------------------------------------- addChild : function( child ) { this.children[child.name] = child; return child; }, //----------------------------------------------- // getChild //----------------------------------------------- getChild : function( name ) { return this.children[name]; }, //----------------------------------------------- // sendMsg //----------------------------------------------- sendMsg : function( msg ) { if ( typeof( msg.receiver ) !== 'undefined' ) { if( Object.prototype.toString.call( msg.receiver ) === '[object Array]' ) { for ( var i = 0; i < msg.receiver.length; i++ ) { var ret = this.children[ msg.receiver[i] ].msgProc( msg ); if ( ret != 0 ) return ret; } } else { return this.children[msg.receiver].msgProc( msg ); } } else { for( name in this.children ) { var ret = this.children[name].msgProc( msg ); if ( ret != 0 ) return ret; } } }, //----------------------------------------------- // process //----------------------------------------------- process : function( data ) { CUWait.stop(); var b_evaled = false; try { this.res = eval('(' + data + ')'); b_evaled = true; } catch(e) { var msg = "[ERROR]:" + "\r\n\r\n" + data.substring(0,1000); //alert( msg ); this.jobj.html( this.errBox(data) ); } try { if ( b_evaled ) { if ( this.res.result == 'OK' ) { window[this.appid] = this; switch( this.res.cmd ) { case "alert": alert(this.res.html); break; case "load": this.jobj.append( this.res.html ); break; } if ( typeof( this.res.msg ) !== 'undefined' ) { this.sendMsg( this.res.msg ); } } else {//-- code error alert( "^" + this.res.result ); this.jobj.html( this.res.result ); } } } catch(e) { var msg = "{ERROR}:" + e.message; alert( msg ); } } } //---------------------------------------------------------------- // ready //---------------------------------------------------------------- $(document).ready(function() { if (!( 'ajax-poll-script-9009' in window )) { window['ajax-poll-script-9009'] = true; $( app_object_selector ).each( function(){ var app = new CApp( $(this) ); }); } }); }(jQuery));