前端动画:告别 jQuery animate,拥抱现代替代方案
毒舌时刻
这动画效果做得跟幻灯片似的,一点都不流畅。
各位前端同行,咱们今天聊聊前端动画。别告诉我你还在使用 jQuery animate,那感觉就像在没有减震器的情况下开车——能开,但颠簸得要命。
为什么你需要现代前端动画
最近看到一个项目,动画效果卡顿,代码复杂难以维护。我就想问:你是在做动画还是在做卡顿展示?
反面教材
<!-- index.html -->
<!DOCTYPE html>
<html>
<head>
<title>jQuery Animation</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<style>
.box { width: 100px; height: 100px; background-color: red; position: relative; }
</style>
</head>
<body>
<div class="box"></div>
<button id="animate">动画</button>
<script src="app.js">

