Video wird geladen...

Video konnte nicht geladen werden

Zur Startseite

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 Aufrufe • vor 1 Jahr •via X (Twitter)

10 Kommentare

Profilbild von 🅰
🅰vor 1 Jahr

Really cool!

Profilbild von Francois Laberge ✍️
Francois Laberge ✍️vor 1 Jahr

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.

Profilbild von terry 🇺🇦
terry 🇺🇦vor 1 Jahr

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?

Profilbild von Dom
Domvor 1 Jahr

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

Profilbild von Evi
Evivor 1 Jahr

I used all my credits, bye..👋

Profilbild von GuZi
GuZivor 1 Jahr

Nice!

Profilbild von Oren Melamed
Oren Melamedvor 1 Jahr

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

Profilbild von Ga Satrya
Ga Satryavor 1 Jahr

Woah, that's really cool!

Profilbild von Shawn
Shawnvor 1 Jahr

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

Profilbild von Pete Thorne
Pete Thornevor 1 Jahr

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

Ähnliche Videos

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 Aufrufe • vor 2 Jahren