1 Star 0 Fork 0

沉冰浮水/水水的旧代码合集

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
contribute
Sync branch
Cancel
Notice: Creating folder will generate an empty file .keep, because not support in Git
Loading...
README

点击旋转元素

所以这东西有啥用 - -;

<!-- HTML -->
<div class="wrap">
  <div class="class1"></div>
  <div class="class2"></div>
  <div class="class3"></div>
</div>
<!-- JavaScript -->
<script type="text/javascript">
  $(function () {
    $("[class^=class]").click(function (event) {
      event.stopPropagation();
      let rotate = $(this).data("rotate") || 10;
      $(this).css({ transform: "rotate(" + rotate + "deg)" });
      rotate += 10;
      $(this).data("rotate", rotate);
    });
  });
</script>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wdssmq/StaleCode.git
git@gitee.com:wdssmq/StaleCode.git
wdssmq
StaleCode
水水的旧代码合集
master

Search