使用Jquery变量更改CSS属性

时间:2015-04-09 23:53:44

标签: jquery css

我试图用Jquery来改变css。 css属性有点复杂,所以我不确定我的连接是否正常工作或者是否存在其他问题:

JQUERY:

$(document).ready(function() {

var degrees = Math.floor(Math.random() * 151) + 20;  //this is my variable

$('#p2').css("-webkit-transform","rotate("+degrees"deg)");
// this -webkit-transform: rotate(50deg); is the property im trying to change
});

1 个答案:

答案 0 :(得分:1)

这是一个小错误。你没有正确追加它。注意' +'学位之后

$(document).ready(function() {

var degrees = Math.floor(Math.random() * 151) + 20;  //this is my variable

$('#p2').css("-webkit-transform","rotate("+ degrees +"deg)");
// this -webkit-transform: rotate(50deg); is the property im trying to change
});