如何使用LESS计算div的宽度,然后以数学方式使用该值?

时间:2015-02-24 21:22:30

标签: jquery html css twitter-bootstrap less

我正在使用LESS值和Bootstrap开发一个站点。我只想使用LESS做相当于jquery的$("somediv").width() * somevalue

我目前的CSS看起来像这样

@test-value:        @grid-columns * 10 / 3; 

.grow:hover .social-links-round {
   opacity: 0.2;
   width: @test-value * 1px;
}
/*the above works fine*/

.grow:hover .social-links-row:hover .social-links-round{
   opacity: 0.5;
   width: this-current-value * 2px; /*this is what i need*/
}

这可能吗?

0 个答案:

没有答案