淡与自定义动画及广告
淡与自定义动画及广告
jQuery淡入淡出动画
1 |
|
弹窗广告
- 动画队列
1
$(".ad").stop().slideDown(1000).fadeOut(1000).fadeIn(1000);
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<html lang="en">
<head>
<meta charset="UTF-8">
<title>弹窗广告</title>
<style>
*{
margin: 0;
padding: 0;
}
.ad{
position: fixed;
right: 0;
bottom: 0;
display: none;
}
.ad>span{
display: inline-block;
width: 30px;
height: 30px;
position: absolute;
top: 0;
right: 0;
}
</style>
<script src="js/jquery-1.12.4.js"></script>
<script>
$(function () {
// 1.监听span的点击事件
$("span").click(function () {
$(".ad").remove();
});
// 2.执行广告动画
/*
$(".ad").slideDown(1000, function () {
$(".ad").fadeOut(1000, function () {
$(".ad").fadeIn(1000);
});
});
*/
$(".ad").stop().slideDown(1000).fadeOut(1000).fadeIn(1000);
});
</script>
</head>
<body>
<div class="ad">
<img src="images/ad-pic.png" alt="">
<span></span>
</div>
</body>
</html>
自定义动画
1 |
|
转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 2113132982@qq.com
文章标题:淡与自定义动画及广告
文章字数:729
本文作者:南邮石磊
发布时间:2020-07-24, 00:43:19
最后更新:2020-08-06, 00:35:28
原始链接:https://southpost.github.io/2020/07/24/%E6%B7%A1%E4%B8%8E%E8%87%AA%E5%AE%9A%E4%B9%89%E5%8A%A8%E7%94%BB%E5%8F%8A%E5%B9%BF%E5%91%8A/版权声明: "署名-非商用-相同方式共享 4.0" 转载请保留原文链接及作者。