freeCodeCamp/curriculum/challenges/russian/03-front-end-libraries/jquery/target-html-elements-with-s...

3.8 KiB
Raw Blame History

id title required challengeType videoUrl localeTitle
bad87fee1348bd9bedc08826 Target HTML Elements with Selectors Using jQuery
link
https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.0/animate.css
6 Целевые элементы HTML с селекторами Использование jQuery

Description

Теперь у нас есть document ready function . Теперь давайте напишем наш первый оператор jQuery. Все функции jQuery начинаются с $ , обычно называемого dollar sign operator , или как bling . jQuery часто выбирает элемент HTML с selector , затем делает что-то с этим элементом. Например, давайте сделаем все ваши элементы button отскоком. Просто добавьте этот код в свою готовую документ: $("button").addClass("animated bounce"); Обратите внимание, что мы уже включили библиотеку jQuery и библиотеку Animate.css в фоновом режиме, чтобы вы могли использовать их в редакторе. Таким образом, вы используете jQuery для применения класса bounce Animate.css к вашим элементам button .

Instructions

Tests

tests:
  - text: Используйте <code>addClass()</code> jQuery <code>addClass()</code> чтобы дать <code>animated</code> классы и <code>bounce</code> к вашим элементам <code>button</code> .
    testString: 'assert($("button").hasClass("animated") && $("button").hasClass("bounce"), "Use the jQuery <code>addClass&#40&#41</code> function to give the classes <code>animated</code> and <code>bounce</code> to your <code>button</code> elements.");'
  - text: 'Используйте только jQuery, чтобы добавить эти цвета к элементу.'
    testString: 'assert(!code.match(/class.*animated/g), "Only use jQuery to add these colors to the element.");'
  - text: Ваш код jQuery должен находиться в пределах <code>$(document).ready();</code> функция.
    testString: 'assert(code.match(/\$\(document\)\.ready\(function.*(\s|\n)*.*button.*.addClass.*\);/g), "Your jQuery code should be within the <code>$(document).ready();</code> function.");'

Challenge Seed

<script>
  $(document).ready(function() {

  });
</script>

<!-- Only change code above this line. -->

<div class="container-fluid">
  <h3 class="text-primary text-center">jQuery Playground</h3>
  <div class="row">
    <div class="col-xs-6">
      <h4>#left-well</h4>
      <div class="well" id="left-well">
        <button class="btn btn-default target" id="target1">#target1</button>
        <button class="btn btn-default target" id="target2">#target2</button>
        <button class="btn btn-default target" id="target3">#target3</button>
      </div>
    </div>
    <div class="col-xs-6">
      <h4>#right-well</h4>
      <div class="well" id="right-well">
        <button class="btn btn-default target" id="target4">#target4</button>
        <button class="btn btn-default target" id="target5">#target5</button>
        <button class="btn btn-default target" id="target6">#target6</button>
      </div>
    </div>
  </div>
</div>

Solution

// solution required