摘要: import React from "react"; import ReactDom from "react-dom"; import {BrowserRouter,Switch,Route} from "react-router-dom"; import './style/index.scss' 阅读全文
posted @ 2020-01-25 19:11 仙界架构师 阅读(1682) 评论(0) 推荐(0) 编辑
摘要: 错误 :在windows系统下,需要npm 一个n来管理nodejs的版本,但是使用npm install -g n命令之后报错 原因 : n 不支持 windows系统 只支持mac系统。 阅读全文
posted @ 2020-01-25 18:42 仙界架构师 阅读(1648) 评论(0) 推荐(1) 编辑
摘要: //render 第一种方法:先const一个对象,把需要应用图片的dom上的style写入对象中, 然后在return()中使用style关键字赋值为预先定义的那个style对象 const bgGround = { display:'block', height: '600px', width: 阅读全文
posted @ 2020-01-25 18:36 仙界架构师 阅读(1138) 评论(3) 推荐(0) 编辑
摘要: requestAnimationFrame 随着浏览器的刷新而执行。 let a = () =>{ doSomething() ; window.requestAnimationFrame( function ); } window.requestAnimationFrame( function ) 阅读全文
posted @ 2020-01-25 18:26 仙界架构师 阅读(113) 评论(0) 推荐(0) 编辑
摘要: /* sass 可以用写JS的思想来写CSS代码 * #{} 用来插值,大括号中填写需要插入的变量 * @for 变量 from 1 through 9 从1到9循环 * $sizei 定义一个变量 值为 $i * 7.5 * .myposition0#{$i}0#{$j} class类名中插入变量 阅读全文
posted @ 2020-01-25 18:20 仙界架构师 阅读(2013) 评论(0) 推荐(0) 编辑