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

Which vehicles have the MOST demand? (It’s not Trucks)

发布时间 2023-05-07 02:12:18    来源
What I noticed over the last one, two, three years is many fans are extremely strong. And I did not see the demand fading for that.
我在过去的一、两、三年里注意到,很多球迷非常强烈。我没有看到这种需求减弱的趋势。

Many fans, yeah, many fans are happy. People were telling me, oh, you're going with many van gang. I said, listen, I'm a dealer. To us, many fans are like the Rolex.
很多粉丝都很开心。有人跟我说,噢,你要和很多车队一起去了。我说,听着,我是个销售员。对我们来说,很多粉丝就像劳力士一样。

Like, you know, we get those things. They fly off the shelf. So I value it very highly.
就像你知道的那样,我们会得到那些东西。它们会迅速卖出。因此我非常珍视它。



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); }