Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$("#div").css("transform", "rotateY("+ '+='+90 +"deg)");
を増やしたいのですrotateYが構文が悪いのですが直してもらえますか?
rotateY
現在の回転を変数に保持し、現在の回転を取得せずにその値を増やすのが最も簡単です。
rotation += 90; $("#div").css("transform", "rotateY("+rotation+"deg)");
それ以外の場合は、文字列であるため、変換のcss値を解析する必要があります。