#CSS #CodePen: Fractal Tree
1:45
3 ай бұрын
#CSS CodePen retrowave
1:29
6 ай бұрын
Пікірлер
@BUY_YOUTUB_VIEWS.800
@BUY_YOUTUB_VIEWS.800 2 ай бұрын
Love the energy 👏👏
@chintachinta-rf2td
@chintachinta-rf2td 3 ай бұрын
Good morning video 2024❤❤❤🎉🎉🎉
@abousali237
@abousali237 4 ай бұрын
Please Can you explain the view transition api with angular 🙏
@kyrenthang8633
@kyrenthang8633 5 ай бұрын
What are you trying to achieve?
@konstantindenerz
@konstantindenerz 5 ай бұрын
A demonstration of a modern art of providing interactions to the user. It could be a dashboard with lots of details about different modules.
@carlastevens5757
@carlastevens5757 5 ай бұрын
P r o m o S M
@VideoweltDanielHagemann
@VideoweltDanielHagemann 6 ай бұрын
very nice
@konstantindenerz
@konstantindenerz 6 ай бұрын
Thanks! 🤩
@abousali237
@abousali237 7 ай бұрын
Please explaine the API transition in angular
@konstantindenerz
@konstantindenerz 7 ай бұрын
You're asking how to do theming (Design Tokens) with Angular?
@abousali237
@abousali237 7 ай бұрын
@@konstantindenerz This is one of your videos where you just present the transition and Angular APIs without explaining how you do it even though it is very interesting and very rare even in the Angular community. I would really like to see an explanatory video please 🙏
@konstantindenerz
@konstantindenerz 7 ай бұрын
@@abousali237there is a blog post for the view transition api konstantin-denerz.com/view-transitions-with-angular-spa/
@abousali237
@abousali237 7 ай бұрын
@@konstantindenerz thanks l'll check it
@bitmau77
@bitmau77 9 ай бұрын
🤩 excelent
@XDDrakan
@XDDrakan Жыл бұрын
Awesome
@hugoherradorcarrasco3261
@hugoherradorcarrasco3261 Жыл бұрын
Hi! How could I resolve this ts error showing: Property 'startViewTransition' does not exist on type 'Document'.ts(2339) when p.e in a component I do : if (!document.startViewTransition)?
@hugoherradorcarrasco3261
@hugoherradorcarrasco3261 Жыл бұрын
I see it does exist in the window.document but the typecritp complains... Thanks for any advice possible given ;)
@hugoherradorcarrasco3261
@hugoherradorcarrasco3261 Жыл бұрын
Im using angular 15.2.0 and ts 4.9.4
@konstantindenerz
@konstantindenerz Жыл бұрын
It's a new API so please check the browser support: caniuse.com/mdn-api_viewtransition Maybe my article will help you: konstantin-denerz.com/view-transitions-with-angular-spa/
@hugoherradorcarrasco3261
@hugoherradorcarrasco3261 Жыл бұрын
it does show the same error either case I reference the dom directly from the compilerOptions.lib option at the tsconfig.json either I reference by injecting the document at the constructor of my component (@Inject(DOCUMENT) private document: Document)
@konstantindenerz
@konstantindenerz Жыл бұрын
if(!(document as any).startViewTransition) could be used to check if the API is available.