我使用 Firefox 24.0 进行开发。
我的代码中有这个元素
唯一标识
.t_Bubble > canvas:nth-child(1)
外部 HTML 内容
<canvas style="width: 50px; height: 73px;" height="73" width="50"></canvas>
它稍后在代码的后面部分更改此 HTML 内容。
<canvas style="width: 114px; height: 62px;" height="62" width="114"></canvas>
我已经在这个元素上应用了这个 CSS
.t_Bubble > canvas:nth-child(1){
transition: width 2s ease,height 2s linear;
-moz-transition:width 2s ease, height 2s linear;
-webkit-transition:width 2s ease, height 2s linear;
}
但是浏览器中任何时候都不会发生转换。你能帮我这个吗?谢谢
我刚刚尝试过,它对我有用。所以我说的完全wrong
.
所以我的猜测是,由于选择器中的错误,您的 CSS 不适用于画布。
你能分享你的HTML吗?
另外,使用:first-child
而不是:nth-child(1)
它有更好的支持
简短的回答:您可能没有使用 CSS 选择器正确定位画布元素。
长"答案":我认为有几件事需要注意:
- 更改
canvas
标签的height
或width
属性将完成清除它(即删除任何吸引到它的东西,将其重置为空白板(。(尽管显然,这在某些浏览器中不会发生。 - 对于
<canvas>
元素,height
或width
属性与height
和width
的 CSS 属性具有唯一的关系,我在这里描述:https://stackoverflow.com/a/19079320/1937302 - 对
height
或width
属性的更改将不会"过渡"/动画 - 对
height
或width
属性的 CSS 属性的更改将被"转换"/动画
化
我在这里演示了其中的一些:
http://jsfiddle.net/BYossarian/WWtGZ/3/
.HTML:
<canvas id="canvas1" height="50" width="100"></canvas>
.CSS:
canvas {
border: 1px solid black;
transition: all 1s ease;
height: 50px;
}
.JS:
var canvas = document.getElementById('canvas1'),
ctx = canvas.getContext('2d');
ctx.fillStyle = "red";
ctx.fillRect(10, 10, 30, 30);
// changing width attribute clears canvas element (in most broswers)
// changing width attribute isn't animated by CSS transition
setTimeout(function () {
canvas.width = "200";
}, 2000);
// changing CSS rule for width is animated, although if no CSS rule for width already exists, then a width of 0px is taken as the starting point
setTimeout(function () {
ctx.fillStyle = "red";
ctx.fillRect(10, 10, 30, 30);
canvas.style.width = "100px";
}, 4000);