You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
Hi, it seems that there are problems with "stroke-dashoffset, used to animate SVG.
I am using this script combined with jQuery.Keyframes. It's working perfectly on Firefox and Chrome, but with Safari I've got serious problems. Nth is working.
The code from jQuery.Keyframes is:
$.keyframe.define({
name: data_name,
to: {
'stroke-dashoffset': stroke_dashoffset
},
});
The code supposed to be generated is sth like this:
@-webkit-keyframes data_name {
to {
stroke-dashoffset: 200;
}
}
@Keyframes data_name {
to {
stroke-dashoffset: 200;
}
}
What's the problem?
I've made the same question to guys from jQuery.Keyframes, just to understand where the problem is situated.
For my little knows, problem is inside PrefixFree, 'cause jQuery.Keyframes is doing its work correctly.
The text was updated successfully, but these errors were encountered:
What Safari version are you using? In v9, stroke-dashoffset is unprefixed, which makes it unlikely that PrefixFree is to blame. Perhaps Safari is bad at this?
Hi, it seems that there are problems with "stroke-dashoffset, used to animate SVG.
I am using this script combined with jQuery.Keyframes. It's working perfectly on Firefox and Chrome, but with Safari I've got serious problems. Nth is working.
The code from jQuery.Keyframes is:
$.keyframe.define({
name: data_name,
to: {
'stroke-dashoffset': stroke_dashoffset
},
});
The code supposed to be generated is sth like this:
@-webkit-keyframes data_name {
to {
stroke-dashoffset: 200;
}
}
@Keyframes data_name {
to {
stroke-dashoffset: 200;
}
}
What's the problem?
I've made the same question to guys from jQuery.Keyframes, just to understand where the problem is situated.
For my little knows, problem is inside PrefixFree, 'cause jQuery.Keyframes is doing its work correctly.
The text was updated successfully, but these errors were encountered: