当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript toggleStyle.toggleStyle函数代码示例

本文整理汇总了TypeScript中app/utils/toggleStyle.toggleStyle函数的典型用法代码示例。如果您正苦于以下问题:TypeScript toggleStyle函数的具体用法?TypeScript toggleStyle怎么用?TypeScript toggleStyle使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了toggleStyle函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: addHoverEffect

export function addHoverEffect(domElement, style) {
  assert(_.isElement(domElement), 'addHoverEffect expects the first argument to be a DOM element');
  assert(_.isPlainObject(style), 'addHoverEffect expects the second argument, style, to be a hash');

  toggleStyle(domElement, style, 'mouseenter', 'mouseleave');
  domElement.setAttribute('has-on-hover-effect', '');
}
开发者ID:gurdiga,项目名称:xo,代码行数:7,代码来源:addHoverEffect.ts

示例2: it

  it('works', function() {
    var style = {
      borderColor: 'blue'
    };

    var onEventName = 'focusin';
    var offEventName = 'focusout';

    toggleStyle(domElement, style, onEventName, offEventName);

    domElement.dispatchEvent(new Event(onEventName));
    assert.equal(domElement.style.borderColor, style.borderColor, 'applies the given style on the “on” event');

    domElement.dispatchEvent(new Event(offEventName));
    assert.equal(domElement.style.borderColor, initialStyle.borderColor, 'returns the initial style on the “off” event');
  });
开发者ID:gurdiga,项目名称:xo,代码行数:16,代码来源:toggleStyleTest.ts

示例3: toggleStyle

 assert.throws(function() {
   toggleStyle(domElement, style, 'mouseenter', 42);
 },
开发者ID:gurdiga,项目名称:xo,代码行数:3,代码来源:toggleStyleTest.ts

示例4: addFocusEffect

export function addFocusEffect(domElement, style) {
  toggleStyle(domElement, style, 'focus', 'blur');
  domElement.setAttribute('has-on-focus-effect', '');
}
开发者ID:gurdiga,项目名称:xo,代码行数:4,代码来源:addFocusEffect.ts


注:本文中的app/utils/toggleStyle.toggleStyle函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。