0
我需要通過採用精靈圖像的x和y位置的函數方法,使用LESS Css中的數學公式計算背景位置。我最好的猜測是這樣的,但可惜這是行不通的。使用LESS Css中的公式計算背景位置
@icon_base: 30px;
@icon: 24px;
/*sets the position of the background based on the x and y position order */
.icon_position(@x: 1, @y: 1) {
@posx: ((#sizes[@icon_base] - #sizes[@icon])/2 + (@x * #sizes[@icon_base])) * -1;
@posy: ((#sizes[@icon_base] - #sizes[@icon])/2 + (@y * #sizes[@icon_base])) * -1;
background-position: @{posx}px @{posy}px;
}
您可能會發現有用的這個問題http://stackoverflow.com/questions/7077660/using-數學函數功能於lesscss/8192510 – avrelian