- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个用 html 编写的简单的 Sudoko 游戏。我有一个 9 行 9 列的表格,上面有不同的数字,玩家可以切换他们的位置。完成后,他单击一个按钮,确认表格单元格是合法的数独板。如果表格是已解决的数独,则所有单元格都应使用 SetInterval 函数向右旋转。
但是,某些单元格的渲染速度不如其他单元格。下排的单元格有时会停止旋转。我该如何解决这个问题?
这是我的代码:
<body>
<table id="SudukoTable">
<tr>
<td class="One" id="C1" onclick="SwitchWith(this)">1</td>
<td class="One" id="C2" onclick="SwitchWith(this)">1</td>
<td class="One" id="C3" onclick="SwitchWith(this)">1</td>
<td class="One" id="C4" onclick="SwitchWith(this)">1</td>
<td class="One" id="C5" onclick="SwitchWith(this)">1</td>
<td class="One" id="C6" onclick="SwitchWith(this)">1</td>
<td class="One" id="C7" onclick="SwitchWith(this)">1</td>
<td class="One" id="C8" onclick="SwitchWith(this)">1</td>
<td class="One" id="C9" onclick="SwitchWith(this)">1</td>
</tr>
<tr>
<td class="Two" id="C10" onclick="SwitchWith(this)">2</td>
<td class="Two" id="C11" onclick="SwitchWith(this)">2</td>
<td class="Two" id="C12" onclick="SwitchWith(this)">2</td>
<td class="Two" id="C13" onclick="SwitchWith(this)">2</td>
<td class="Two" id="C14" onclick="SwitchWith(this)">2</td>
<td class="Two" id="C15" onclick="SwitchWith(this)">2</td>
<td class="Two" id="C16" onclick="SwitchWith(this)">2</td>
<td class="Two" id="C17" onclick="SwitchWith(this)">2</td>
<td class="Two" id="C18" onclick="SwitchWith(this)">2</td>
</tr>
<tr>
<td class="Three" id="C19" onclick="SwitchWith(this)">3</td>
<td class="Three" id="C20" onclick="SwitchWith(this)">3</td>
<td class="Three" id="C21" onclick="SwitchWith(this)">3</td>
<td class="Three" id="C22" onclick="SwitchWith(this)">3</td>
<td class="Three" id="C23" onclick="SwitchWith(this)">3</td>
<td class="Three" id="C24" onclick="SwitchWith(this)">3</td>
<td class="Three" id="C25" onclick="SwitchWith(this)">3</td>
<td class="Three" id="C26" onclick="SwitchWith(this)">3</td>
<td class="Three" id="C27" onclick="SwitchWith(this)">3</td>
</tr>
<tr>
<td class="Four" id="C28" onclick="SwitchWith(this)">4</td>
<td class="Four" id="C29" onclick="SwitchWith(this)">4</td>
<td class="Four" id="C30" onclick="SwitchWith(this)">4</td>
<td class="Four" id="C31" onclick="SwitchWith(this)">4</td>
<td class="Four" id="C32" onclick="SwitchWith(this)">4</td>
<td class="Four" id="C33" onclick="SwitchWith(this)">4</td>
<td class="Four" id="C34" onclick="SwitchWith(this)">4</td>
<td class="Four" id="C35" onclick="SwitchWith(this)">4</td>
<td class="Four" id="C36" onclick="SwitchWith(this)">4</td>
</tr>
<tr>
<td class="Five" id="C37" onclick="SwitchWith(this)">5</td>
<td class="Five" id="C38" onclick="SwitchWith(this)">5</td>
<td class="Five" id="C39" onclick="SwitchWith(this)">5</td>
<td class="Five" id="C40" onclick="SwitchWith(this)">5</td>
<td class="Five" id="C41" onclick="SwitchWith(this)">5</td>
<td class="Five" id="C42" onclick="SwitchWith(this)">5</td>
<td class="Five" id="C43" onclick="SwitchWith(this)">5</td>
<td class="Five" id="C44" onclick="SwitchWith(this)">5</td>
<td class="Five" id="C45" onclick="SwitchWith(this)">5</td>
</tr>
<tr>
<td class="Six" id="C46" onclick="SwitchWith(this)">6</td>
<td class="Six" id="C47" onclick="SwitchWith(this)">6</td>
<td class="Six" id="C48" onclick="SwitchWith(this)">6</td>
<td class="Six" id="C49" onclick="SwitchWith(this)">6</td>
<td class="Six" id="C50" onclick="SwitchWith(this)">6</td>
<td class="Six" id="C51" onclick="SwitchWith(this)">6</td>
<td class="Six" id="C52" onclick="SwitchWith(this)">6</td>
<td class="Six" id="C53" onclick="SwitchWith(this)">6</td>
<td class="Six" id="C54" onclick="SwitchWith(this)">6</td>
</tr>
<tr>
<td class="Seven" id="C55" onclick="SwitchWith(this)">7</td>
<td class="Seven" id="C56" onclick="SwitchWith(this)">7</td>
<td class="Seven" id="C57" onclick="SwitchWith(this)">7</td>
<td class="Seven" id="C58" onclick="SwitchWith(this)">7</td>
<td class="Seven" id="C59" onclick="SwitchWith(this)">7</td>
<td class="Seven" id="C60" onclick="SwitchWith(this)">7</td>
<td class="Seven" id="C61" onclick="SwitchWith(this)">7</td>
<td class="Seven" id="C62" onclick="SwitchWith(this)">7</td>
<td class="Seven" id="C63" onclick="SwitchWith(this)">7</td>
</tr>
<tr>
<td class="Eight" id="C64" onclick="SwitchWith(this)">8</td>
<td class="Eight" id="C65" onclick="SwitchWith(this)">8</td>
<td class="Eight" id="C66" onclick="SwitchWith(this)">8</td>
<td class="Eight" id="C67" onclick="SwitchWith(this)">8</td>
<td class="Eight" id="C68" onclick="SwitchWith(this)">8</td>
<td class="Eight" id="C69" onclick="SwitchWith(this)">8</td>
<td class="Eight" id="C70" onclick="SwitchWith(this)">8</td>
<td class="Eight" id="C71" onclick="SwitchWith(this)">8</td>
<td class="Eight" id="C72" onclick="SwitchWith(this)">8</td>
</tr>
<tr>
<td class="Nine" id="C73" onclick="SwitchWith(this)">9</td>
<td class="Nine" id="C74" onclick="SwitchWith(this)">9</td>
<td class="Nine" id="C75" onclick="SwitchWith(this)">9</td>
<td class="Nine" id="C76" onclick="SwitchWith(this)">9</td>
<td class="Nine" id="C77" onclick="SwitchWith(this)">9</td>
<td class="Nine" id="C78" onclick="SwitchWith(this)">9</td>
<td class="Nine" id="C79" onclick="SwitchWith(this)">9</td>
<td class="Nine" id="C80" onclick="SwitchWith(this)">9</td>
<td class="Nine" id="C81" onclick="SwitchWith(this)">9</td>
</tr>
</table>
<button id="CheckBtn" onclick="RoateAll()">Finished</button>
这是我的 javascript 文件:
function RotateAll() {
setInterval(function () {
angle++;
for (var i = 1; i < 82; i++) {
var a = document.getElementById("C" + i);
a.style.webkitTransform = "rotate("+angle+"deg)"
}
}, 60);
这是我的表格在其单元格旋转多次后的样子:
最佳答案
您应该使用 3d 变换来启动硬件加速!
#SudukoTable td {
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000;
-moz-perspective: 1000;
-ms-perspective: 1000;
perspective: 1000;
}
查看演示 - http://jsfiddle.net/iancwoodward/sT7UJ/4/
3D 变换专用于 3D(显然),但是当您通过激活第 3 轴(即 Z 轴或 translateZ)来启动它们时,它会产生同时启动 OpenGl 驱动程序的副作用,从而使您可以访问硬件加速。换句话说,您正在使用 3D 处理器在您的计算机中渲染动画而不是正常的软件渲染。其他 2 个属性用于修复某些浏览器中的抖动动画,因为它们有时会尝试呈现对象的两面,即使您只打算显示一侧。
关于javascript - 旋转期间 HTML 元素呈现不佳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23646753/
我有一个问题,但由于 this question 部分正在解决,但我想知道如何计算给定间隔之间的天数。 这是一个计算员工休假天数的查询。所以给定(或不给定)一个日期范围,我想计算给定间隔之间有多少假期
变量dateSubtract结果是 16,但我想找到这 2 天之间的总天数,应该是 165。没有 JODA TIME 我该如何做到这一点? String date = "06/17/2014"; Da
我想选择创建日期介于给定月份的第一天和最后一天之间的记录。我通过以下方式计算开始日期和结束日期的月份: 日期“月份”只是时间范围内的随机日期 Calendar cal = Calendar.getIn
我有一个对你们大多数人来说可能微不足道的问题。我尝试了很多,没有找到解决方案,所以如果有人能给我提示,我会很高兴。起点是每周 xts -时间序列。 月周值(value)目标 2011 年 12 月 W
我有一个 Facebook 应用程序,它将用户生日作为 varchar 存储在 mysql 数据库中。我正在尝试获取所有用户的生日 1周后推出,如果是在本周如果生日是上周。 在我的 php 中,我获取
我正在使用以下代码来获取年、月、日中的两个日期之间的差异 tenAppDTO.getTAP_PROPOSED_START_DATE()=2009-11-01 tenAppDTO.getTAP_PRO
我想检查当前时间(在 C++ 中)是否在一个时间范围内。 我想从元组 ("12:00", "17:30") 构造时间范围,即 (string, string) 并检查时间 now() 是否介于两者之间
gitlab 有一个功能,如果我在提交消息中放入票号,那么提交将与 gitlab.com 上的票相关联。 这在进行代码审查时非常方便。不幸的是,开发人员有时会忘记这样做。 我想指定 git hooks
我正在尝试制作使用SQLite数据库的简单注册/登录应用程序,到目前为止我得到了这段代码。这是我的“注册” Activity ,我猜它应该在按下注册按钮后将用户名和 pin(密码)实现到数据库,遗憾的
我正在尝试打开、关闭和写入文件。每当我尝试打开一个文件时,如果我提供的路径中不存在该文件,程序就会告诉我。如果存在,程序将读取其中的内容并显示它。如果用户不想查找文件,可以选择创建文件并用数据填充它。
我想要我的至slideToggle每当发生 react 性变化时,但到目前为止我还无法使其发生。我尝试在 rendered 中使用 JQuery和created模板的事件,但它没有触发。 触发此操作的
我们的 MySQL 遇到了神秘的网络问题。简单的更新查询(使用索引更新单行)通常会立即运行,然后有时(假设 1000 次中有 1 次)因超时而失败。与简单的插入查询相同。数据库没有过载。我们怀疑网络问
我正在使用 actionbarsherlock 的 ActionBar,第一次以横向或水平方向运行应用程序时,选项卡以 Tabs Mode 显示。将方向更改为纵向后,导航模式仍在 Tabs 中。第二次
每天晚上(太平洋标准时间晚上 8 点)我都会对生产数据库(innoDB 引擎)进行全局备份。 这是 mysqldump 命令: mysqldump -u$MYSQLUSER -p$MYSQLPWD -
当我的应用程序第一次启动时,它应该显示用户协议(protocol),这是一个 59kb 的 txt 文件。由于读取文件并将其附加到 TextView 需要一些时间,因此我决定在异步任务中执行此操作并在
如何只允许一个“.”在按键期间的javascript中? 我这里有一个代码: function allowOneDot(txt) { if ((txt.value.split(".")
我已经创建了像主页和用户这样的标题图标。在桌面 View 中,如果我单击用户图像,它会显示相应的重定向页面。如果我在选项卡或移动 View 中将其最小化, 它什么都不显示。此问题仅发生在用户图像上,而
下面的代码在 Release模式下工作,并且仅在 Debug模式下在 g_ItemList.push_back() 引发错误,我浏览了一些 SO 帖子和论坛。有人提到 "You can't itera
我遇到了一个我似乎无法解决的 mmap 问题。下面是设置:我使用 malloc 将一个巨大的多维数组分配到内存中,用我的值填充它,然后我想将它保存在一个文件中。该数组包含 3200000000 个字节
尝试加载共享库: handle = dlopen( "libaaa.so.2.5", RTLD_NOW ); if ( !handle ) { printf("Failed t
我是一名优秀的程序员,十分优秀!