Skip to content

Adding unnecessary elements to CSS3 animation syntax  #18

@nishville

Description

@nishville

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);
	}
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions