首页  >>  来自播客: Tesla Daily 更新   反馈

First Tesla Robotaxi Ride [Full Drive]

发布时间 2025-06-22 22:07:42    来源
All right, okay if I record Need to head start back here it looks like learning curve How many rides through are you so far? Handful yeah, it's the first day.
好的,可以让我录音吗?看来我得尽早回到这里,这就像一个学习曲线。你到目前为止坐了多少次?就几次,是第一天。

Yeah And then technically I'm just here to monitor the vehicle. Sure. I don't want to distract you.
好的,实际上我只是来监控这辆车的。当然,我不想打扰你。

Yeah. Yeah. Thank you. Yeah, absolutely All right, thanks so much. Thank you very much. Have a good rest of the day.
好的。好的。谢谢。是的,当然。好的,非常感谢。祝你一天愉快。

Yeah.
是的。



function setTranscriptHeight() { const transcriptDiv = document.querySelector('.transcript'); const rect = transcriptDiv.getBoundingClientRect(); const tranHeight = window.innerHeight - rect.top - 10; transcriptDiv.style.height = tranHeight + 'px'; if (false) { console.log('window.innerHeight', window.innerHeight); console.log('rect.top', rect.top); console.log('tranHeight', tranHeight); console.log('.transcript', document.querySelector('.transcript').getBoundingClientRect()) //console.log('.video', document.querySelector('.video').getBoundingClientRect()) console.log('.container', document.querySelector('.container').getBoundingClientRect()) } if (isMobileDevice()) { const videoDiv = document.querySelector('.video'); const videoRect = videoDiv.getBoundingClientRect(); videoDiv.style.position = 'fixed'; transcriptDiv.style.paddingTop = videoRect.bottom+'px'; } const videoDiv = document.querySelector('.video'); videoDiv.style.height = parseInt(videoDiv.getBoundingClientRect().width*390/640)+'px'; console.log('videoDiv', videoDiv.getBoundingClientRect()); console.log('videoDiv.style.height', videoDiv.style.height); } window.onload = function() { setTranscriptHeight(); }; if (!isMobileDevice()){ window.addEventListener('resize', setTranscriptHeight); }