js-运动
dom的一些操作和实例
阿渡渡渡渡渡渡
这个作者很懒,什么都没留下…
展开
-
js-小方块运动(点击按钮加速)
<!-- 点加速按钮以后,移动速度变快 --> <button style="width: 100px; height: 50px; background: linear-gradient(to left,#999, #000, #432, #fcc); position: fixed; right:0; top:50%; text-align: center; line-height: 50px; color: #fff; font-size: 25px; fon...原创 2020-05-22 10:08:30 · 512 阅读 · 0 评论 -
js-实现选项卡功能
<div class="wrapper"> <button class="active">111</button> <button>222</button> <button>333</button> <div class="content" style="display: block;">1111</div> &l...原创 2020-05-20 16:39:36 · 159 阅读 · 0 评论 -
js-小方块运动实例
<script> var div = document.createElement('div'); document.body.appendChild(div); div.style.width = "100px"; div.style.height = "100px"; div.style.backgroundColor = "red"; div.style.position = "abs...原创 2020-05-20 16:36:38 · 372 阅读 · 0 评论