RE: [PROPOSAL] :event:then(:event, ...) selector

Idea  (as far as I understand it) is to have some mechanism that will allow to distinguish cases when element is getting particular state and when it looses it.

Use case: 

1. I'd like to define "mousein" animation different from "mouseout". 
2 Yet to have "focus" animation different from "blur" animation. 

Current state of CSS affairs does not allow to define №1 and №2 at the same time.

Andrew Fedoniouk

Terra Informatica Software, Inc.

From: Tab Atkins Jr.
Sent: May 31, 2018 3:24 PM
To: Michaël Rouges
Cc: www-style list
Subject: Re: [PROPOSAL] :event:then(:event, ...) selector

I copied this over to the GH repo as issue #2725
<https://github.com/w3c/csswg-drafts/issues/2725>.

On Mon, May 28, 2018 at 11:35 AM, Michaël Rouges
<michael.rouges@gmail.com> wrote:
> Hi all,
>
> Tiny proposal about a then selector, useful to mais some transitions, etc.,
> when events are chained.
>
> Example :
>
> ```
> /* triggers when the focused ol loose the focus, if the ol is still hovered
> */
> ol:focus:then(:hover) {
>   transition: width .3ms;
> }
> ```
>
> Useful, for example, to close a focused list, but after a possible click
> effect, or to show a message, when an input pass from :invalid to :valid,
> etc.
>
> What do you think about it?
>
> Michaël Rouges - https://github.com/Lcfvs - @Lcfvs

Received on Thursday, 31 May 2018 23:10:17 UTC