换算 宫的坐标,没有看懂
convertToBoxIndex(rowIndex, colIndex) {
return {
boxIndex: Math.floor(rowIndex / 3) * 3 + Math.floor(colIndex / 3),
cellIndex: rowIndex % 3 * 3 + colIndex % 3
}
}
convertToBoxIndex(rowIndex, colIndex) {
return {
boxIndex: Math.floor(rowIndex / 3) * 3 + Math.floor(colIndex / 3),
cellIndex: rowIndex % 3 * 3 + colIndex % 3
}
}
2018-03-25
.css({
"line-height":'${width}px',
"font-size" : width < 32 ? '${width/2}px' : ''
});为什么我这段代码显示不出效果
"line-height":'${width}px',
"font-size" : width < 32 ? '${width/2}px' : ''
});为什么我这段代码显示不出效果
2018-03-24
讲师回答 / 边城
要运行 gulp 需要在项目目录下有 gulpfile.js 或者 gulpfile.ts 才行(后者需要 ts-node 之类的转义工具库),一般用 gulpfile.js 就好,视频中有示例的。
2018-03-17
最新回答 / xiaomizhou66
我的还发生错误了呢,求解不知道怎么修改了webpack 是新版的,用视频的方法运行错误,所以修改如下,module.exports = {entry: {index: './js/index'},output: {filename: '[name].js'},resolve: {extensions: ['.js']},module: {rules: [{test: /\.js$/,exclude: /node_modules/,use: [{loader: 'babel',options: {prese...
2018-03-14
不需要加class的,这样就行了
#container { span { display: inline-block; border-left: 1px solid #000; border-top: 1px solid #000; width: 20px; height: 20px; } > div { display: inline-block; span:nth-child(3n) { border-right: 1px solid #000; } &:nth-child(3n) span { border-bottom: 1px solid rgb(19, 18, 18); } } }
#container { span { display: inline-block; border-left: 1px solid #000; border-top: 1px solid #000; width: 20px; height: 20px; } > div { display: inline-block; span:nth-child(3n) { border-right: 1px solid #000; } &:nth-child(3n) span { border-bottom: 1px solid rgb(19, 18, 18); } } }