Сообщения без ответов | Активные темы Текущее время: 2024-12-18 05:10



Ответить на тему  [ 1 сообщение ] 
[Udemy] Learn By Example: The Foundations of HTML, CSS & Javascript [2016, ENG] 
Автор Сообщение
Постоянный
Постоянный
Раздал: 1.19 ТБ
Скачал: 949.67 ГБ
Ратио: 1.278


Зарегистрирован: 2014-10-13 17:53
Сообщения: 2494
Ответить с цитатой 
Learn By Example: The Foundations of HTML, CSS & Javascript

#777
Год выпуска: 2016
Производитель: Udemy
Сайт производителя: http://www.udemy.com
Продолжительность: 13:03:05
Тип раздаваемого материала: Видеоурок
Язык: Английский
Описание: Закрытия, прототипов, JSON, DOM, селекторов, наследование в CSS и Javascript и первого класса функций


Closures, prototypes, JSON, the DOM, selectors, inheritance in CSS and in Javascript, and first class functions

Содержание
├── 01 Welcome to HTML, CSS and Javascript
│ └── 001 Welcome to HTML, CSS and Javascript.mp4
├── 02 HTML
│ ├── 001 Introducing HTML and CSS.mp4
│ ├── 002 Introduction to HTML.mp4
│ ├── 003 Introduction to CSS.mp4
│ ├── 004 The A Tag.mp4
│ ├── 005 Paths.mp4
│ ├── 006 Quotes.mp4
│ ├── 007 Lists - Ordered and Unordered.mp4
│ ├── 008 Other Miscellaneous HTML Tags.mp4
│ ├── 009 URL and Domain Names.mp4
│ ├── 010 The img Tag.mp4
│ └── 011 The HTML Standard.mp4
├── 03 CSS
│ ├── 001 Cascading Stylesheets reintroduced.mp4
│ ├── 002 Inheritance in CSS.mp4
│ ├── 003 CSS Selectors.mp4
│ ├── 004 Fonts.mp4
│ ├── 005 Colors.mp4
│ ├── 006 The Box Model.mp4
│ ├── 007 The div Element.mp4
│ ├── 008 What is the exact style applied.mp4
│ ├── 009 The span Element.mp4
│ ├── 010 HTML States and Pseudo-classes.mp4
│ ├── 011 Normal Rendering Flow Of The Browser.mp4
│ ├── 012 The CSS float and clear properties.mp4
│ ├── 013 Experimenting with the position attribute.mp4
│ ├── 014 Fluid And Fixed Layouts.mp4
│ ├── 015 The CSS display property.mp4
│ └── 016 Chrome Developer Tools.mp4
├── 04 Javascript Basics
│ ├── 001 Introducing Javascript.mp4
│ ├── 002 Example 1 Executing Javascript code.mp4
│ ├── 003 Example 2 Basic programming constructs.mp4
│ ├── 004 Example 3 Separating HTML and JS files.mp4
│ ├── 005 Example 4 Using the console.log statement.mp4
│ ├── 006 Example 5 Local and global variables.mp4
│ ├── 007 Example 6 Undeclared variables in JS are global.mp4
│ ├── 008 Example 7 Local variables hide global variables of the same name.mp4
│ ├── 009 Example 8 Javascript is ephemeral, reloading a page resets everything.mp4
│ ├── 010 Example 9 Creating and using arrays.mp4
│ ├── 011 Example 10 Copying an array.mp4
│ ├── 012 Example 11 Adding an element to an array.mp4
│ ├── 013 Example 12 Deleting elements from an array.mp4
│ ├── 014 Example 13 Arrays can contain different types.mp4
│ ├── 015 Example 14 Non-existent array elements are undefined.mp4
│ └── 016 First class functions.mp4
├── 05 Objects in Javascript
│ ├── 001 Introduction to Javascript objects.mp4
│ ├── 002 Example 15 Creating an object using JSON.mp4
│ ├── 003 Example 16 Creating an object using a constructor.mp4
│ ├── 004 Example 17 Adding properties to objects dynamically.mp4
│ ├── 005 Example 18 Removing properties from objects dynamically.mp4
│ ├── 006 Example 19 Object properties can be functions.mp4
│ ├── 007 Example 20 Object constructors can have property functions.mp4
│ ├── 008 Example 21 Two ways of accessing object properties.mp4
│ ├── 009 Example 22 Iterating over all properties in an object.mp4
│ ├── 010 Example 23 Calling a constructor without new.mp4
│ ├── 011 Example 24 Understanding the typeof operator.mp4
│ ├── 012 Example 25 Paternity tests using instanceof.mp4
│ └── 013 Example 26 Faking public and private properties.mp4
├── 06 First Class Functions - In Detail
│ ├── 001 Example 27 Functions as arguments to functions.mp4
│ ├── 002 Example 28 Functions that return functions.mp4
│ ├── 003 Example 29 Arguments pass by value to functions.mp4
│ └── 004 Example 30 Arguments pass by reference.mp4
├── 07 Javascript Quirks
│ ├── 001 Example 31 Understanding undefined.mp4
│ ├── 002 Example 32 Understanding null.mp4
│ ├── 003 Example 33 Understanding NaN.mp4
│ ├── 004 Example 34 Strings and numbers and conversions between them.mp4
│ ├── 005 Example 35 Strange comparison operators.mp4
│ ├── 006 Example 36 Truthy and falsy.mp4
│ └── 007 Example 37 Simple string operations.mp4
├── 08 Functions Yet Again
│ ├── 001 Example 38 Declared Functions, Function Literals and Hoisting.mp4
│ ├── 002 Example 39 Named And Anonymous Function Literals.mp4
│ ├── 003 Example 40 Nested Functions.mp4
│ └── 004 Example 41 Nested functions can be declared.mp4
├── 09 Closures
│ ├── 001 Introduction to closures.mp4
│ ├── 002 Example 42 Closure variables win over local variables.mp4
│ ├── 003 Example 43 Closures with declared functions and function literals.mp4
│ ├── 004 Example 44 Referencing environment with function parameters.mp4
│ └── 005 Example 45 Closure variables cooler than global variables.mp4
├── 10 Prototypes, Dynamic Prototyping and Inheritance
│ ├── 001 Introduction to prototypes.mp4
│ ├── 002 Example 46 Prototypical Inheritance In Action.mp4
│ ├── 003 Example 47 Dynamic Prototyping.mp4
│ ├── 004 Example 48 Inheritance hierarchy using chained prototypes.mp4
│ ├── 005 Example 49 Overriding properties using prototypes.mp4
│ ├── 006 Example 50 The base object as the ultimate prototype.mp4
│ └── 007 Example 51 Overriding properties of built-in objects.mp4
├── 11 The Document Object Model Event Handling
│ ├── 001 Introduction to the Document Object Model.mp4
│ ├── 002 Example 52 Modifying the HTML of a page using the DOM.mp4
│ ├── 003 Example 53 Event Handling.mp4
│ ├── 004 Example 54 Adding Multiple Event Handlers on the Same Event.mp4
│ ├── 005 Example 55 Setting Arbitrary HTML Attributes.mp4
│ └── 006 Example 56 The window object.mp4
└── 12 JSON
├── 001 Introduction To JSON.mp4
├── 002 Example 57 Simple JSON Use Cases.mp4
└── 003 Example 58 Creating meaningful objects with JSON.mp4

Файлы примеров: отсутствуют
Формат видео: MP4
Видео : AVC, 1280x720 (16:9), 59.940 (60000/1001) fps, ~873 Kbps avg, 0.016 bit/pixel
Аудио: 48.0 KHz, AAC LC, 2 ch, ~66.2 Kbps

Скриншоты

























2016-03-11 03:04
Профиль
  • Торрент
Автор: Александр С. Хэш: ---
Добавлен: 2016-03-11 03:01 Приватный: Нет (DHT включён)
Статус:
---
Размер: 4.26 ГБ (4 576 510 999 байт)
Изменил:
---
Скачали: 0 (Раздающих: 0%)
Причина:
---
Здоровье: 0%
Сидеров: 0 Личеров: 0
Скорость раздачи: 0 байт/сек Скорость скачивания: 0 байт/сек
Последний сидер: Нет Последний личер: Нет
Для скачивания торрента необходимо зарегистрироваться или войти на трекер.
Показать сообщения за:  Поле сортировки  
Ответить на тему   [ 1 сообщение ] 

Кто сейчас на конференции

Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 1


Вы не можете начинать темы
Вы не можете отвечать на сообщения
Вы не можете редактировать свои сообщения
Вы не можете удалять свои сообщения
Вы не можете добавлять вложения

Найти:
Перейти:  
Создано на основе phpBB® Forum Software © phpBB Group
ppkBB3cker v.2.5 © 2008-2021 @ PPK | Icon Theme by Everaldo.com Design Studio
Designed by ST Software.
Русская поддержка phpBB
[ Time : 0.302s | 16 Queries | GZIP : Off ]
Ресурс не предоставляет электронные версии произведений, а занимается лишь коллекционированием и каталогизацией ссылок, присылаемых и публикуемых на форуме нашими читателями. Если вы являетесь правообладателем какого-либо представленного материала и не желаете чтобы ссылка на него находилась в нашем каталоге, свяжитесь с нами и мы незамедлительно удалим её. Файлы для обмена на трекере предоставлены пользователями сайта, и администрация не несёт ответственности за их содержание. Просьба не заливать файлы, защищенные авторскими правами, а также файлы нелегального содержания!
tracker_cron Яндекс.Метрика