gpt4 book ai didi

javascript - 为样式值构造的字符串不起作用

转载 作者:行者123 更新时间:2023-12-03 06:08:43 26 4
gpt4 key购买 nike

function tickleTux() {

var tuxImg = document.getElementById('tux');

tuxImg.style.transition = "transform .5s";

tuxImg.addEventListener('click', itTickles, false);

function itTickles() {

var addRotation = 10;

var rotationValue = '"' + 'rotate' + '(' + addRotation + 'deg' + ')' + '"'

tuxImg.style.transform = rotationValue;

console.log(rotationValue);
}

基本上,这会为 img 添加旋转样式并使其旋转。

只是想知道为什么以这种方式将值添加到转换属性不起作用。为什么?

console.log 命令打印出:“rotate(10deg)”

那么是什么阻止了它的功能呢?某种规则?

感谢您的帮助。

最佳答案

值周围不应包含 "

var rotationValue = 'rotate(' + addRotation + 'deg)';

关于javascript - 为样式值构造的字符串不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39418551/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com