Консоль хрома выдает ошибку: “Uncaught SyntaxError: Unexpected token” JavaScript

194
13 ноября 2018, 17:40

var typed1 = new Typed("#typed1") { 
  strings: ["Hello.", "Greettings.", "Hey.", "Welcome.", "Howdy.", "Shalom.", "Hi."], 
  // typing speed 
  typeSpeed: 40, 
  // time before typing starts 
  startDelay: 1000, 
  //time before erasing starts 
  backDelay: 1000, 
  // backspacing speed 
  backSpeed: 60, 
  // loop 
  loop: true, 
  // false = infinite 
  loopCount: 5, 
  // show cursor 
  showCursor: true, 
  // character for cursor 
  cursorChar: "|", 
  // attribute to type (null == text) 
};

Консоль гласит, что ошибка на первой строке.

Answer 1

Опции идут вторым параметром:

var typed1 = new Typed("#typed1", {
  strings: ["Hello.", "Greettings.", "Hey.", "Welcome.", "Howdy.", "Shalom.", "Hi."],
  // typing speed
  typeSpeed: 40,
  // time before typing starts
  startDelay: 1000,
  //time before erasing starts
  backDelay: 1000,
  // backspacing speed
  backSpeed: 60,
  // loop
  loop: true,
  // false = infinite
  loopCount: 5,
  // show cursor
  showCursor: true,
  // character for cursor
  cursorChar: "|",
  // attribute to type (null == text)
});
Answer 2

var typed1 = new Typed("#typed1"); 
console.log(typed1); 
 
function Typed(selector) { 
  this.strings = ["Hello.", "Greettings.", "Hey.", "Welcome.", "Howdy.", "Shalom.", "Hi."]; 
  // typing speed 
  this.typeSpeed = 40; 
  // time before typing starts 
  this.startDelay = 1000; 
  //time before erasing starts 
  this.backDelay = 1000; 
  // backspacing speed 
  this.backSpeed = 60; 
  // loop 
  this.loop = true; 
  // false = infinite 
  this.loopCount = 5; 
  // show cursor 
  this.showCursor = true; 
  // character for cursor 
  this.cursorChar = "|"; 
  // attribute to type (null == text) 
};

READ ALSO
Нет инерционной прокрутки на iPhone

Нет инерционной прокрутки на iPhone

Выявил на сайте такую проблему, причем она присутствует только на iPhoneЕсли попытаться скроллить пальцем страницу вниз, проведя пальцем и отпустив...

150
Раскрасить текст разными цветами

Раскрасить текст разными цветами

Имеется 4 цвета: red, yellow, blue, green

171