jQuery II

jQuery II

Professional Development

15 Qs

quiz-placeholder

Similar activities

Dictionaries und Datentypen in Python

Dictionaries und Datentypen in Python

Professional Development

10 Qs

Python (Verzweigung, Schleifen)

Python (Verzweigung, Schleifen)

Professional Development

15 Qs

JRDL - Intro to DOM

JRDL - Intro to DOM

6th Grade - Professional Development

12 Qs

Python Grundlagen Quiz  - Auffrischung

Python Grundlagen Quiz - Auffrischung

Professional Development

13 Qs

DECI - Week 11 - round

DECI - Week 11 - round

Professional Development

10 Qs

PreTrainingHTMLCSS

PreTrainingHTMLCSS

Professional Development

15 Qs

Web Development Basic

Web Development Basic

Professional Development

20 Qs

CSS QUIZ 1

CSS QUIZ 1

University - Professional Development

15 Qs

jQuery II

jQuery II

Assessment

Quiz

Computers

Professional Development

Hard

Created by

L H

Used 5+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Wie kann man ein Element so animieren, dass es um je 30px breiter und höher wird?

$('#element').animate({ width: '+=30px', height: '+=30px' });

$('#element').animate({width: '30px', height: '30px'});

$('#element').animate(width = '30px', height = '30px');

$('#element').grow('30px', '30px');

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Wie kann man ein Element so animieren, dass es 30px breit und ebenso hoch wird?

$('#element').animate({ width: '30px', height: '30px'});

$('#element').animate({ width: '+= 30px', height: '+=30px' });

$('#element').animate(width = '30px', height = '30px');

$('#element').size('30px', '30px');

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Mit welcher Anweisung kann man erreichen, dass eine Animation mit gleichbleibender Geschwindigkeit abläuft?

'steady'

'linear'

'ease'

'flow'

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Mit welcher Methode kann man eine Animation anhalten lassen?

finish();

interrupt();

stop();

hold();

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Mit welcher Methode kann man eine Animation sofort abschließen?

stop();

jumpToEnd();

quit();

finish();

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Wie kann man verhindern, dass das '$'-Zeichen mit anderen JS-Bibliotheken in Konflikt gerät?

jQuery.unbind('$');

$(noConflict(){...});

$.dontUse('$');

$.noConflict();

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Wie kann man mit jQuery die Eingabe in einem Input-Feld abfragen?

$('#my-input').value();

$('#my-input').value;

$('#my-input').val();

$('#my-input').text();

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?