I think my last question overwhelmed everyone, so Iβll simplify
I am trying to change only the initial position of the x axis. By default, if only one value is specified, the other default value is 50%
, so this function:
function colorChangePiano() { var bp = $("background-position").css; $("#target").css('background-position', (bp == -1131) ? '-377' : '0'); }
returns background-position: 0 50%
;
How to change the function to change the x axis, but leave the y axis unchanged?
edited -> this is for a sprite with 4 columns and 4 rows, so the y axis should remain dynamic. work site here: http://www.avalonbyeaw.com click "complete". we made him work with some crazy complicated scenarios on a live site, but Iβll leave it here anyway because I would really like to find a solution to this problem anyway
source share