Skip to content
New issue

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

Adding unnecessary elements to CSS3 animation syntax #18

Open
nishville opened this issue Mar 23, 2018 · 3 comments
Open

Adding unnecessary elements to CSS3 animation syntax #18

nishville opened this issue Mar 23, 2018 · 3 comments

Comments

@nishville
Copy link

For some reason you're adding quotation marks around zoom syntax and makes animation not work in IE.

@keyframes zoom {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.05, 1.05) rotate(0.02deg);
    }
}

to:

@keyframes "zoom" {
	from {
		transform: scale(1, 1);
	}
	to {
		transform: scale(1.05, 1.05) rotate(0.02deg);
	}
}
@Remo
Copy link
Contributor

Remo commented Mar 24, 2018

you're right, have to look into this, thanks

@Remo
Copy link
Contributor

Remo commented Mar 24, 2018

I think it's most likely caused by a library I'm using
natxet/CssMin#16

@Remo Remo closed this as completed in 34aaa7d Mar 24, 2018
@Remo
Copy link
Contributor

Remo commented Mar 24, 2018

nope, my bad, will fix the tests soon, but I fixed the version online

@Remo Remo reopened this Mar 24, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants