问答详情
源自:5-2 编程挑战

请问这两行通过随机数设置图片位置是什么意思?

var margin_left = Math.floor(- newBox.outerWidth() / 2 + ((Math.random() * 10) < 5 ? -1 : 1) * (Math.random() * 200));

    var margin_top = Math.floor(- newBox.outerHeight() / 2 + ((Math.random() * 10) < 5 ? -1 : 1) * (Math.random() * 200));


提问者:慕运维9358467 2018-07-17 21:32

个回答

  • 慕梦前来
    2023-02-28 19:24:28

    就是移动位置用的

  • 慕梦前来
    2021-10-11 19:43:51

    这个位置的定位的意思