我的地图是930px x 530px。我想使用mixin将lat / long coords转换为框内的顶部/左侧百分比值。
这就是我到目前为止......
@mixin latLong ($lat, $long) {
left: (($long + 180) * (930/360)) + %;
top: (($lat + 90) * (530/180)) + %;
}
我像这样使用它......
&.m1 {@include latLong(-33.94628333, 151.2157139);}
这是吐出一个值,但是它在引号中,所以它对css无效。我究竟做错了什么?感谢。
答案 0 :(得分:8)
您希望使用乘法来应用单位,而不是连接:
@mixin latLong ($lat, $long) {
left: (($long + 180) * (930/360)) * 1%;
top: (($lat + 90) * (530/180)) * 1%;
}
答案 1 :(得分:6)
尝试使用原生SASS帮助方法获得百分比:http://sass-lang.com/docs/yardoc/Sass/Script/Functions.html#percentage-instance_method。
@mixin latLong ($lat, $long) {
left: percentage(($long + 180) * (930/360));
top: percentage(($lat + 90) * (530/180));
}