Trey Lyles

Trey LYLES #41

  • Date de naissance1995-11-05 (29 ans)
  • Lieu de naissanceSaskatoon (CAN)
  • PosteAilier-fort
  • Taille2.08 m
  • NationalitéCAN
MINUTESPOINTS% TIRSREBONDSPASSES
18:097.444.94.31
Statistiques cette saison toutes compétitions confondues
DERNIERS MATCHSADV.TITMINPTSTIRS%3PTS%LF%RORDRTINTBPPDCOFTE
2024-04-14vs POR18:4651-4251-2502-210035800300
2024-04-13vs PHO14:4031-2501-2500-0002201102
2024-04-12vs NOP14:4062-4502-4500-0001100200

Cette saison

TYPEEQUIPECHPTMJTITMINPTSTRTT%T3RT3T%LFRLFT%RORDRTINTBPPDCOFTE
SRSACNBA127018:137.42.55.545.11.33.537.11.11.577.213.24.20.30.810.41.4
POSACNBA7016:476.62.45.742.51.33.933.30.40.7601.34.45.70.30.40.701.7
RECORDS CETTE SAISON26:4216610754666.72210028922203
MOYENNE134018:097.42.55.544.91.33.536.91.11.476.813.34.30.30.810.41.4

Carrière

SAISONTYPEEQUIPECHPTMJTITMINPTSTRTT%T3RT3T%LFRLFT%RORDRTINTBPPDCOFTE
2223SRSACNBA127018:137.42.55.545.11.33.537.11.11.577.213.24.20.30.810.41.4
2122SRSACNBA221822:1110.53.57.448.112.637.92.42.886.914.25.20.30.71.30.21.3
2122SRDETNBA51319:2410.43.47.545.60.92.930.12.73.578.41.23.64.80.41.11.10.51.8
2021SRSASNBA23915:3351.93.947.80.61.7350.7165.20.43.33.70.30.30.600.6
1920SRSASNBA635320:106.42.45.444.612.738.70.50.773.31.14.65.70.40.61.10.41.6
1819SRDENNBA63217:468.73.37.941.80.83.225.51.31.869.80.73.23.90.51.11.40.41.5
1718SRDENNBA73219:029.93.77.549.11.1338.11.4270.60.844.70.40.81.20.51.5
1718SRATLNBA1026:2421915601250254005531303
1617SRUTANBA71416:186.22.26.236.20.92.931.90.81.172.20.72.63.30.40.910.31.4
1516SRUTANBA803317:116.12.45.444.10.61.638.90.7168.80.733.70.30.80.80.21.4
MOYENNE - 8 saisons58612418:077.72.86.244.312.834.71.21.674.20.93.44.30.40.81.10.31.4
SAISONTYPEEQUIPECHPTMINPTSTRTT%T3RT3T%LFRLFT%RORDRTINTBPPDCOFTE
2223SRSACNBA33:062481310061010079100591123535
2122SRSACNBA37:042810161004810011131004141824544
2122SRDETNBA37:042810161004810011131004141824544
2021SRSASNBA35:481871310046100441004101123212
1920SRSASNBA41:182391710057100561005131443444
1819SRDENNBA38:28229151003710046100491036534
1718SRDENNBA33:1926917100581007101003101133436
1718SRATLNBA33:1926917100581007101003101133436
1617SRUTANBA32:45218151004810056100471025326
1516SRUTANBA39:072291810048100461003101154424
RECORDS EN CARRIÈRE41:1828101810061010011131005141856646
SAISONTYPEEQUIPECHPTMJTITMINPTSTRTT%T3RT3T%LFRLFT%RORDRTINTBPPDCOFTE
2223POSACNBA7016:476.62.45.742.51.33.933.30.40.7601.34.45.70.30.40.701.7
1819PODENNBA3002:41000.3000.300000.300.3000.700.3
1617POUTANBA2004:453.51.53.542.90.51.533.30000110.50.50.500.5
MOYENNE EN PLAY-OFFS12011:154.41.7441.70.82.632.30.30.4600.82.83.60.30.30.701.2
SAISONTYPEEQUIPECHPTMINPTSTRTT%T3RT3T%LFRLFT%RORDRTINTBPPDCOFTE
2223POSACNBA26:4216610754666.72210028922203
1819PODENNBA03:49001001000010100201
1617POUTANBA05:3773475125000001111101
RECORDS EN PLAYOFFS26:4216610754666.72210028922203
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));