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

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

На главную

Available now in Visual Studio Code Insiders, you can select and add elements directly to Chat! After opening any locally-hosted site via the built-in Simple Browser, click "Start" on the toolbar and select the element you want. This will attach a screenshot of the selected element, as well as...

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

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

Фото профиля 🅰
🅰1 год назад

Really cool!

Фото профиля Francois Laberge ✍️
Francois Laberge ✍️1 год назад

Is there going to be an API at some point for VS Code extension writers to embed web-views (vs iframes now) with more privileges so that you can take screenshots and inject/instrument code easily? Severely limits what code generating extensions can do without it.

Фото профиля terry 🇺🇦
terry 🇺🇦1 год назад

how do i also get access to claude 3.7 sonnet? i have it enabled on my copilot settings, and i'm even part of a copilot for business right now. why the heck i can't switch from 4o the dumbest one?

Фото профиля Dom
Dom1 год назад

Downloading VSCode Insiders now – ready to dive into the new feature!

Фото профиля Evi
Evi1 год назад

I used all my credits, bye..👋

Фото профиля GuZi
GuZi1 год назад

Nice!

Фото профиля Oren Melamed
Oren Melamed1 год назад

already hyped on it 3 days ago!!!! this is killer feature

Фото профиля Ga Satrya
Ga Satrya1 год назад

Woah, that's really cool!

Фото профиля Shawn
Shawn1 год назад

yes microsoft, promote ai generation of nintendo assets in a marketing setting. surely there will be no repercussions

Фото профиля Pete Thorne
Pete Thorne1 год назад

I can't get this to work, I click "Select" and then click on elements but it's not detecting them?

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

CSS Tip! ✨ It's 2024 and you have a new way to make animated borders 🚀 .glow::after { offset-path: rect(0 100% 100% 0 round var(--radius)); animation: loop; } @​keyframes loop { to { offset-distance: 100%; }} Using the offset-* properties you can animate elements along the perimeter of others 😍 The rect() value gained support in Safari 17.2 🙌 To start, you create an element and put it inside your main element. For example, you put a span inside the button 🤙 Click me! Make the element fill its parent with absolute positioning and inset [data-glow] { position: absolute; inset: 0; } Now the good part, you use a pseudoelement on that element and define an offset-path [data-glow]::after { content: ""; offset-path: rect(0 auto auto 0 round var(--radius)); animation: loop 2.6s infinite linear; } With the rect value, you are saying the path fills the parent container: top: 0 right: auto || 100% bottom: auto || 100% left: 0 Then you can use round to make sure the path uses the same radius as whatever the parent has The @​keyframes animation merely animates the offset-distance of that pseudoelement to 100% @​keyframes loop { to { offset-distance: 100%; }} You can see this more clearly in the video 🫶 The offset-* properties also include an offset-anchor property. This allows you to dictate which point of the element follows the path. For example: anchor-offset: 100% 50%; This means that the "right, center" of the element will follow the perimeter of the parent element 🤙 Lastly, the visuals 🎨 For color, you can use a gradient such as a linear gradient to fill the pseudo-element. [data-glow]::after { background: radial-gradient( circle at right, hsl(320 90% 100%), transparent 50% ); } Then clip away everything so you only have the border and can still have translucent backgrounds, etc. Use a mask with mask-composite ✨ A little transparent border trick: [data-glow] { border: 2px solid transparent; mask: linear-gradient(transparent, transparent), linear-gradient(white, white); mask-clip: padding-box, border-box; mask-composite: intersect; } Bit of a long one. Hope you find it useful 🙏 CodePen.IO link below 👇

jhey ʕ•ᴥ•ʔ

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