要實現一個漂浮廣告效果,可以使用jQuery中的animate()方法來實現元素的動畫效果。以下是一個簡單的示例代碼:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Float Ad</title>
<style>
#floatAd {
position: fixed;
bottom: 10px;
right: 10px;
width: 200px;
height: 100px;
background-color: #f00;
color: #fff;
text-align: center;
line-height: 100px;
display: none;
}
</style>
</head>
<body>
<div id="floatAd">Floating Ad</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function() {
$('#floatAd').fadeIn().animate({
right: '50px',
opacity: '0.7'
}, 2000).animate({
right: '10px',
opacity: '1'
}, 2000);
});
</script>
</body>
</html>
在上面的示例中,我們在頁面中創建了一個固定位置的浮動廣告元素#floatAd
,初始時設置為display: none
隱藏。然后在jQuery的$(document).ready()
方法中,使用fadeIn()
方法使元素淡入顯示,然后使用animate()
方法實現元素向右移動和透明度改變的動畫效果。