定位的div环形/圆形排列


            
微信
支付宝
现金
会员卡
银联
混合
更多
$(function(){
        var radius =300;
        var avd = 210/$(".modepayment-content div").length;
        var ahd = avd*Math.PI/180;
       $(".modepayment-content").css({"left":0,"top":200});
        $(".modepayment-content div").each(function(index, element){
            $(this).css({"bottom":Math.sin((ahd*index))*radius,"right":Math.cos((ahd*index))*radius+405});
        });
    })


你可能感兴趣的:(angularJS)