You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/documentation/tutorial/10-transitions/07-global-transitions/text.md

709 B

title
Global transitions

Ordinarily, transitions will only play on elements when their direct containing block is added or destroyed. In the example here, toggling the visibility of the entire list does not apply transitions to individual list elements.

Instead, we'd like transitions to not only play when individual items are added and removed with the slider but also when we toggle the checkbox.

We can achieve this with a global transition, which plays when any block containing the transitions is added or removed:

<div transition:slide|global>
	{item}
</div>

In Svelte 3, transitions were global by default and you had to use the |local modifier to make them local.