jQuery Animate [#9] Ultimate Web Developer Course (Free Tutorial)

jQuery Animate [#9] Ultimate Web Developer Course (Free Tutorial)

Brad Hussey

8 лет назад

57,944 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Ariel Cavalcante
Ariel Cavalcante - 10.03.2019 03:39

to the left to the left, everything you code in a box -=40px to the left

Ответить
ابن اليمن القديمي
ابن اليمن القديمي - 18.01.2019 03:20

It's good.

Ответить
ابن اليمن القديمي
ابن اليمن القديمي - 18.01.2019 03:19

It's good.

Ответить
Des Troya
Des Troya - 01.10.2018 04:11

Javascript should change it's name to curly bracket hell. CBH for short.

Ответить
Omar Khalil
Omar Khalil - 05.09.2018 16:38

thanks a lot :)

Ответить
Aashish Chandra
Aashish Chandra - 13.08.2018 20:47

You are awesome👏✊👍, million thanks to you. Great👍 job.

Ответить
steven lane
steven lane - 10.06.2018 18:44

GREAT-short and simple - INstructions.

Ответить
Faisal Affan
Faisal Affan - 29.04.2018 06:54

Very helpfull tutorials Thanks SIR

Ответить
Md Mozammel Haque
Md Mozammel Haque - 01.04.2018 07:14

very good, Thank you, sir.

Ответить
mira mikic
mira mikic - 14.07.2017 09:29

<!DOCTYPE html>
<html>
<head>
<title>Moja prva PHP forma</title>
<meta charset="UTF-8"/>
</head>

<body>
<h1>Forma za pozdrav</h1>

<?php
// submitane varijable nalaze se u asocijativnom polju $_POST
// (ako se koristi post) ili $_GET (ako se koristi get)

if (isset($_POST['ime']) && $_POST['ime'] !== '') {
$_SESSION["ime"] = $_POST["ime"];

}
if(isset($_POST["boja"]) && $_POST["boja"] !== '') {
$_SESSION["boja"] = $_POST["boja"];
}


if(isset($_SESSION["ime"]) && $_SESSION["ime"] !== '') {
if (isset($_SESSION["boja"]) && $_SESSION["boja"] !== '') {
echo "<p style='color:".$_SESSION["boja"]."'>Pozdrav, ". $_SESSION["ime"] ."</p>";
} else {
echo "<p>Upišite ime i boju...</p>";
echo '<form action="zadatak_3.php" method="post">
<input type="text" name="ime" placeholder="ime..." />
<input type="text" name="boja" placeholder="boja..."/>
<input type="submit" value="Prijavi se"/>
</form>';
}
}
else {
echo "<p>Upišite ime i boju...</p>";
echo '<form action="zadatak_3.php" method="post">
<input type="text" name="ime" placeholder="ime..." />
<input type="text" name="boja" placeholder="boja..."/>
<input type="submit" value="Prijavi se"/>
</form>';
}
?>

</body>
</html>

Ответить
mira mikic
mira mikic - 13.07.2017 23:22

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>



<script>

var brojac = 0;

function rotiraj() {
var slika = document.getElementById("slika");

var listaSlika = [
"slika1.jpg",
"slika2.jpg",
"slika3.jpg"
];

brojac++;

if(brojac >= listaSlika.length) {
brojac = 0;
}

slika.src = listaSlika[brojac];
}

function kojaSlika() {
var slika = document.getElementById("slika");

alert(slika.getAttribute('src'));
}

</script>

</head>
<body>

<a href="#" onclick="rotiraj()">Promjeni sliku</a>
<a href="#" onclick="kojaSlika()">Koja je ovo slika?</a>

<div><img id="slika" src="slika1.jpg"></div>

</body>
</html>

Ответить
Roman Chuiko
Roman Chuiko - 11.07.2017 19:13

Круто!

Ответить
Emily Holden
Emily Holden - 19.04.2017 13:09

This whole course is so helpful - thank you so much!

Ответить
ahmed alqassass
ahmed alqassass - 09.02.2017 13:17

thank you man

Ответить
R N
R N - 02.02.2017 13:16

Just too good .. thank you!

Ответить
Nikola Jankovic
Nikola Jankovic - 08.10.2016 01:33

A very educative video thanks!

Ответить
ahfrof gotod
ahfrof gotod - 22.07.2016 20:15

cool

Ответить
Theeradach Subsin
Theeradach Subsin - 16.07.2016 18:43

Excellent Tutorials Thanks!

Ответить
TheMalni
TheMalni - 15.07.2016 00:10

You are a good teacher, I like your style and speed, thanks a lot for the video :)

Ответить
creativeclerk
creativeclerk - 10.07.2016 03:05

Very clearly explained, and I learned something, the -= and +=. I didn't know that, so thanks for your insight.
Opacity is the opposite of transparency. So, an opacity of 1 means that it is not transparent at all. You cannot see through it. But an opacity of 0 means you can see right through it. It is completely transparent.

Ответить
Krenar Shatri
Krenar Shatri - 08.07.2016 01:23

I think the reason why jQuery uses backgroundColor and not background-color is because you are in a .js file and the "-" is a minus the same as x-y.I think in general every css syntax can simply transformed into js by just removing the "-" and make the first letter of the syntax uppercase(the first word you leave unchanged).I might be wrong though.

Ответить
miffan7
miffan7 - 12.04.2016 15:32

Дякую

Ответить
B Marcel
B Marcel - 14.03.2016 17:17

Hi, I cannot receive your course files..... I received your Email, i press the button - and than nothing (the action is allowed - and i have try with 2 browsers).
?

Ответить
Chandru kaliyannan
Chandru kaliyannan - 01.02.2016 14:48

I need to use same header and footer for all html from index.html using jquery

Ответить
sh1ft15
sh1ft15 - 22.11.2015 12:22

Never thought of this before.Nice.

Ответить
Edward Chechique
Edward Chechique - 10.11.2015 21:03

You explain very clear!
thanks!

Ответить