Opentip样式不起作用

时间:2013-11-28 17:09:05

标签: javascript jquery coffeescript opentip

我使用opentip并尝试使用自定义样式设置opentip样式。

这些是我在咖啡里的代码。

Opentip.styles.orangetip = { 
  stem: true,
  borderColor: "#ffa358",
  borderWidth: "50",
  background: "#ffa358",
  fixed: true,
  stemLength: "10"
  }

我甚至使用这个块来使我的样式成为默认样式,但它仍然不起作用。

Opentip.defaultStyle = "orangetip"

这是我调用样式的脚本。

tip1 = new Opentip("#testong", "Optional content", { 
  style: "orangetip", 
  showOn: "mouseover"
})

样式未加载,但showOn正在运行。例如,如果我将“mouseover”更改为“click”,则容器将显示单击,而不是悬停。

任何人都知道为什么风格不加载?谢谢。

1 个答案:

答案 0 :(得分:3)

我已经找到了答案。

问题是因为我使用“”表示整数值。

所以,必须是:

Opentip.styles.orangetip = { 
  stem: true,
  borderColor: "#ffa358",
  borderWidth: 50,
  background: "#ffa358",
  fixed: true,
  stemLength: 10
}