换算 宫的坐标,没有看懂
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
不需要加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); } } }
@qq_墨染_3,获取设备的宽度deviceWidth,判断当前位置的left+panel的120px,是否大于deviceWidth;如果大于,则将最后panel显示位置的left-120px,根据自己的需要调一下。
以下代码还加了等级选择功能,需要参考的伙伴可以看看,谢谢。
https://github.com/zhongshanxian/SUM/tree/master/games/sudoku
以下代码还加了等级选择功能,需要参考的伙伴可以看看,谢谢。
https://github.com/zhongshanxian/SUM/tree/master/games/sudoku
2018-02-07