So, this is the CSS
html {
background: url(Images/1.jpg);
background-position: center;
background-size: cover;
-webkit-transition: background 1s ease;
-moz-transition: background 1.5s ease;
transition: background 1s ease;
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
}
I have jQuery code that, every time you press space, the background: url(x/x.jpg) changes.
It works perfectly on google chrome, but, once in firefox it changes abruptly. The default value is set as you can see and the -moz prefix is clearly there.
I've scoured through SO but I'm only seeing answers saying to include a default value.