web前端 利用jquery实现图片的浮动
时间: 2023-08-13 15:07:41 浏览: 154
基于jquery的实现可以用鼠标滚轮控制的图片滚动上下滚动效果.zip
你可以使用 jQuery 的 `.animate()` 方法实现图片的浮动效果。具体步骤如下:
1. 首先给图片设置一个初始位置,比如 `position: relative; top: 0px;`。
2. 在 jQuery 中选中该图片,并使用 `.animate()` 方法来改变其位置,比如 `$(“img”).animate({ top: ‘50px’ }, 1000);` 表示让图片向下浮动 50px,动画时长为 1 秒。
3. 在需要触发浮动效果的事件(比如点击按钮)中调用该动画方法即可。
完整代码如下:
HTML:
```
<button id="float-btn">浮动图片</button>
<img src="example.jpg" alt="example" class="float-img">
```
CSS:
```
.float-img {
position: relative;
top: 0px;
}
```
JavaScript:
```
$(document).ready(function() {
$("#float-btn").click(function() {
$("img.float-img").animate({ top: '50px' }, 1000);
});
});
```
当点击“浮动图片”按钮时,图片就会向下浮动 50px 的距离。
阅读全文