We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to make nested "delayed" class.
`
When "foo" is shown, "hoge" is added "displayed" class, and "foo" is added "current" class.
But, class "delayed", "displayed" and "current" use "opacity" property. "opacity" property influence child node. Then
result
It does NOT work on Chorome, Opera and Safari. "foo" is shown by "opacity 0.3".
But, I designate "color" property by "rgba".
And, I use "visibility" property in order to appear characters. So I change "slideshow.css".
.delayed, .delayed-children > * { visibility: hidden; color: rgba(0,0,0,0);
-webkit-transition:1s color; /*-moz-transition:.7s opacity; -o-transition:.7s opacity; transition:.7s opacity; */
}
.delayed.current, .delayed-children > .current, .delayed.displayed.non-dismissable, .delayed-children > .displayed.non-dismissable { visibility: visible; color: rgba(255,255,255,1); }
.delayed.displayed, .delayed-children > .displayed { visibility: visible; color: rgba(255,255,255,0.3); }
It works on Safari.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I want to make nested "delayed" class.
`
- hogehoge
- foofoo
`When "foo" is shown,
"hoge" is added "displayed" class, and "foo" is added "current" class.
`
But, class "delayed", "displayed" and "current" use "opacity" property.
"opacity" property influence child node.
Then
`
result
It does NOT work on Chorome, Opera and Safari.
"foo" is shown by "opacity 0.3".
But, I designate "color" property by "rgba".
`
result
And, I use "visibility" property in order to appear characters.
So I change "slideshow.css".
.delayed,
.delayed-children > * {
visibility: hidden;
color: rgba(0,0,0,0);
}
.delayed.current,
.delayed-children > .current,
.delayed.displayed.non-dismissable,
.delayed-children > .displayed.non-dismissable {
visibility: visible;
color: rgba(255,255,255,1);
}
.delayed.displayed,
.delayed-children > .displayed {
visibility: visible;
color: rgba(255,255,255,0.3);
}
It works on Safari.
The text was updated successfully, but these errors were encountered: