Open
Bug 1246198
Opened 10 years ago
Updated 3 years ago
Break long values like css-transforms down to individual components in the animation-inspector's timeline
Categories
(DevTools :: Inspector: Animations, defect, P3)
DevTools
Inspector: Animations
Tracking
(Not tracked)
NEW
People
(Reporter: pbro, Unassigned)
References
(Depends on 1 open bug)
Details
Attachments
(1 file)
|
323.26 KB,
image/png
|
Details |
When you click on an animation in the timeline, it expands and let's you view its keyframes and animated properties.
With bug 1231457, animated values will be displayed too.
Displaying long values such as
transform: translateX(10px) scale(2) rotate(14deg) skew(13deg);
is going to be kind of hard, especially now that the panel is narrow.
Instead of displaying the value on one line, it could make sense to break it down to individual components when possible. So the above transform would appear as:
transform
|
+-- translateX 10px
|
+-- scale 2
|
+-- rotate 14deg
|
+-- skew 13deg
A similar thing could be done to other css properties (css filter for instance).
| Reporter | ||
Comment 1•10 years ago
|
||
Helpful sketch from Helen Holmes and Val Head.
Updated•8 years ago
|
Product: Firefox → DevTools
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•