https://github.com/AustinDeng/gallery-by-react 基于目前最新的 React15.0.0, 欢迎Star.
2018-10-18
https://github.com/AustinDeng/gallery-by-react 基于目前最新的 React15.0.0, 欢迎Star.
2018-10-18
在这个例子中是向下取整才对:
在视频:03:10左右的
topImgNum=Math.ceil(Math.random()*2)
应改为:
topImgNum=Math.floor(Math.random()*2)
在视频:06:10左右的
topImgSpliceIndex = Math.ceil(Math.random()*(imgsArrangeArr.length - topImgNum));
应改为:
topImgSpliceIndex = Math.floor(Math.random()*(imgsArrangeArr.length - topImgNum));
在视频:03:10左右的
topImgNum=Math.ceil(Math.random()*2)
应改为:
topImgNum=Math.floor(Math.random()*2)
在视频:06:10左右的
topImgSpliceIndex = Math.ceil(Math.random()*(imgsArrangeArr.length - topImgNum));
应改为:
topImgSpliceIndex = Math.floor(Math.random()*(imgsArrangeArr.length - topImgNum));
2018-07-20
同学们,我从vue转向react于是把之前vue学习入门实战课程饿了么外卖用react实现,项目难度不大但包含了react多数常用操作。 非常适合入门(坑)学习~
GitHub 演示地址:https://github.com/HQ-Lin/react-sell
如果对您有帮助,请给我个Star,在线学习的动力来自于无私的分享。O(∩_∩)O~
GitHub 演示地址:https://github.com/HQ-Lin/react-sell
如果对您有帮助,请给我个Star,在线学习的动力来自于无私的分享。O(∩_∩)O~
2018-07-15