Загрузка видео...

Не удалось загрузить видео

На главную

#BREAKING: CTA Red Line train comes uncoupled between the Wilson and Sheridan stations with ~300 people on board, just before 3pm. One person on CTA radio alleges "someone tampered with the knuckle" and requests a photo taken immediately. #ChicagoScanner

64,969 просмотров • 1 год назад •via X (Twitter)

Комментарии: 10

Фото профиля Eric Tendian
Eric Tendian1 год назад

The "knuckle" is the coupler between two train cars: Photo:

Фото профиля Eric Tendian
Eric Tendian1 год назад

The second (car # 5598) and third (car # 5709) railcars became uncoupled from each other. The first part of the train has made it to Sheridan to unload customers, and the second part is about to arrive. #ChicagoScanner

Фото профиля Eric Tendian
Eric Tendian1 год назад

CFD transported one person that was on the incident train to an area hospital, unknown circumstances. The Red Line is back running normally. #ChicagoScanner

Фото профиля Eric Tendian
Eric Tendian1 год назад

Here's a Trib article from 1987 where train uncouplings were a frequent occurrence:

Фото профиля DarkManX
DarkManX1 год назад

Just so people know if that knuckle is uncoupled and they take a turn, which there are quite a few on the red/brown line, thats an almost guaranteed derailment

Фото профиля ScannerChi
ScannerChi1 год назад

thats a senior supervisor, K580,

Фото профиля Kool-Aid Vendor
Kool-Aid Vendor1 год назад

I always see blacks moving from car to car while trains are in transit. They are never held accountable.

Фото профиля ScannerChi
ScannerChi1 год назад

Good close captioning, very accurate

Фото профиля ScannerChi
ScannerChi1 год назад

Where did you guys get 300 passengers from? I thought the 300 passengers was the first train they unloaded at Belmont, not the number of people on this stuck train, but I couldve misheard

Фото профиля Eric Tendian
Eric Tendian1 год назад

BC9 said "Okay, according to CTA representative 568 Morgan, they're going to be moving the downed train in two sections to the Sheridan station. Approximately 300 persons on board. The first section that came uncoupled from the second section is the head section, uncoupled from the second and third section. [...]" (AI transcript)

Похожие видео

CSS Tip! 🍬 You can create a CSS-only sticky CTA using position: sticky or scroll-driven animations 🤙 .cta { position: sticky; margin-top: 110vh; bottom: 2rem; /* 👈 Stick! */ } This is one way 👀 This first way relies on you setting a layout on the body and putting the CTA in a zero-space part of the layout body { display: grid; grid-template-columns: auto 0; } The children of the body are an element with your content and then the CTA. You could also use display:flex too. .content { flex: 1 0 100%; } .cta { place-self: end; } As you scroll the body, the CTA comes into view and sticks in position 🙌 That's one way. If you want to take it further and do something like flip between showing or not, maybe scale it up, or add some special easing, etc. an animation is another way 📜 First, change the styles for your CTA. Note the translate property that's powered by a custom property .cta { position: fixed; bottom: 2rem; right: 2rem; translate: 0 calc(20vh - (var(--show) * 20vh)); transition: translate 0.875s var(--elastic); } Next you need a custom property that you're going to animate @​property --show { inherits: true; initial-value: 0; syntax: ' '; } Lastly, you animate this value on the body. As the property value changes, the value will trickle down to the CTA @​supports (animation-timeline: scroll()) { body { animation: show-cta both steps(1); animation-timeline: scroll(root); animation-range: 0 10vh; } @​keyframes show-cta { to { --show: 1; } } } Using @​supports you can use this as a progressive enhancement. If scroll-driven animations are supported, use them. Otherwise fallback to using position: sticky 🤙 That's it! As always, any questions or requests, hit me up! 🙏 CodePen.IO link below! 👇

jhey ʕ•ᴥ•ʔ

133,020 просмотров • 2 лет назад