-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheffects.html
More file actions
38 lines (34 loc) · 1.13 KB
/
effects.html
File metadata and controls
38 lines (34 loc) · 1.13 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Fourth file</title>
<link rel="stylesheet" href="./jq.css" />
</head>
<body>
<div class="div4">
<button id="btn1">fade in</button>
<button id="btn2">fade out</button>
<button id="btn6">FadeToggle</button>
<br /><br />
<button id="btn3">Hide</button>
<button id="btn4">show</button>
<button id="btn5">Toggle</button>
</div>
<br />
<button id="btn7">Slideup</button>
<button id="btn8">slidedown</button>
<button id="btn9">Toggleslide</button>
<br />
<button id="btn10">Stop</button>
<button id="btn11">animate</button>
</div>
<div id="div1">
<img
src="https://buffer.com/cdn-cgi/image/w=1000,fit=contain,q=90,f=auto/library/content/images/size/w1200/2023/10/free-images.jpg"
id="img1"
/>
<script type="text/javascript" src="jquery-3.7.1.js"></script>
<!--There are mainly 2 ways to add jquery 1 is file 2 is cdn it requires active internet connection -->
<script src="effectsjs.js" type="text/javascript"></script>
</body>
</html>