diff --git a/.gitignore/.gitignore b/.gitignore/.gitignore deleted file mode 100644 index 265f17f..0000000 --- a/.gitignore/.gitignore +++ /dev/null @@ -1 +0,0 @@ -DS_Store diff --git a/jQueryFunctions/globe.png b/jQueryFunctions/globe.png new file mode 100644 index 0000000..1c4c244 Binary files /dev/null and b/jQueryFunctions/globe.png differ diff --git a/jQueryFunctions/home.png b/jQueryFunctions/home.png new file mode 100644 index 0000000..d8a1b59 Binary files /dev/null and b/jQueryFunctions/home.png differ diff --git a/jQueryFunctions/jQueryFunctions.html b/jQueryFunctions/jQueryFunctions.html new file mode 100644 index 0000000..66b29fd --- /dev/null +++ b/jQueryFunctions/jQueryFunctions.html @@ -0,0 +1,192 @@ + + + + + + + + jQuery Functions + + + + + + +
+

+ Jquery Functions test +

+
+
+

AddClass

+ +

Click the button to add class 'red' to this paragraph

+
+
+

Slidetoggle

+ +

Click the button to Slidetoggle a hidden image

+ ninja +
+
+

Append

+ +

Click the button to append a new paragraph

+
+
+

Click

+ +

Click the button

+
+
+

Show

+ +

Click the button to show image

+
+
+

Toggle

+ +

Click the button

+

Hello there you clicked

+
+
+

SlideDown

+ + ninja image +

Click the button

+
+
+

SlideUp

+ + globe image +

Click the button

+
+
+

FadeIn

+ + phone image +

Click the button

+
+
+

FadeOut

+ + home image +

Click the button

+
+
+

Before

+ +

Click the button

+
+
+

After

+ +

Click the button

+
+
+

Html

+ +

Click the button

+
+
+

attr

+ +

Click the button

+
+
+

Val

+ + +

Click the button

+
+
+

Text

+ +

Click the button

+
+
+

Data

+ +
+ The values in the array are and +
+

Click the button

+
+ + + \ No newline at end of file diff --git a/jQueryFunctions/jquery.css b/jQueryFunctions/jquery.css new file mode 100644 index 0000000..70f3648 --- /dev/null +++ b/jQueryFunctions/jquery.css @@ -0,0 +1,40 @@ +header{ + background-color: blueviolet; + color: white; + width: 970px; + text-align: center; + height: 50px; +} +article{ + border-bottom: 2px solid grey; + width: 970px; + text-align: center; +} +.red{ + color: red; +} + +button{ + background-color: rgb(66, 0, 128); + color: white; +} +#ninja{ + width: 100px; + display: none; +} +p{ + display:block; +} +#cat{ + display: none; +} + +#globe{ + width: 50px; +} +#phone{ + display: none; +} +span{ + color: blue; +} \ No newline at end of file diff --git a/jQueryFunctions/linkcat.png b/jQueryFunctions/linkcat.png new file mode 100644 index 0000000..6f61fd3 Binary files /dev/null and b/jQueryFunctions/linkcat.png differ diff --git a/jQueryFunctions/ninja.png b/jQueryFunctions/ninja.png new file mode 100644 index 0000000..cfa4bae Binary files /dev/null and b/jQueryFunctions/ninja.png differ diff --git a/jQueryFunctions/phone.png b/jQueryFunctions/phone.png new file mode 100644 index 0000000..0e4bcb6 Binary files /dev/null and b/jQueryFunctions/phone.png differ