function Scale(){
X = innerWidth / 1024;
Y = innerHeight / 768;
Z = document.getElementById("IFM");
Z.style.transform = "scale(X, Y)";
}
I have a problem with this code. I couldn't use variables in scale!
What can I do with this problem?