var containerHeight = $(".item").height();
$(".word-game .nWord").css({
"-webkit-transform" : "translate(0, " + containerHeight + ")"
});
这是我的代码,但是不起作用。我真的累了。
最佳答案
只需将px
或%
添加到当前函数中,因为translate
不知道如何处理普通整数。
var containerHeight = $(".item").height();
$(".word-game .nWord").css({
"transform" : "translate(0,"+containerHeight+"px)"
});
http://jsfiddle.net/nuuLjhL0/