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


TypeScript dom.p函数代码示例

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


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

示例1: div

 const vdom$ = name$.map(name =>
   div([
     p([
       'First name',
       input('.first', { attrs: { type: 'text' } }),
     ]),
     p([
       'Last name',
       input('.last', { attrs: { type: 'text' } }),
     ]),
     h2('Hello ' + name),
   ]),
开发者ID:joeldentici,项目名称:cyclejs,代码行数:12,代码来源:index.ts

示例2: h3

const getDom = ({ sha, commit: { message, author: { name, email, date } } }: Commit) => [
  h3([message.split('\n\n')[0]]),
  h4([strong([name])]),
  h4([email]),
  h4([em([date])]),
  p([message.split('\n\n')[1] || ''])
];
开发者ID:cyclejs-community,项目名称:typescript-starter-cycle,代码行数:7,代码来源:index.ts

示例3: renderInvalidState

function renderInvalidState() {
  return div(`.${invalidStateStyle}`, [
    h1('Not a Cycle.js app with xstream'),
    p('This page doesn\'t seem to be running a Cycle.js app using xstream ' +
      'as the stream library. This DevTool only supports xstream. Or maybe ' +
      'you are using xstream but an older version.'),
    p('This DevTool requires that your app is built using the following ' +
      'packages:'),
    ul([
      li([ pre('xstream'), ' v6.1.x or higher' ]),
      li([ pre('@cycle/run'), ' v3.1.x or higher' ]),
      li([ pre('@cycle/dom'), ' v12.2.x or higher, if you are using it' ]),
      li([ pre('@cycle/http'), ' v10.2.x or higher, if you are using it' ]),
    ]),
    p([
      'Need help? The ',
      a({ attrs: {
        href: 'https://gitter.im/cyclejs/cyclejs',
        target: '_blank',
      }}, 'chat'),
      ' is usually friendly and helpful.',
    ]),
  ]);
}
开发者ID:cyclejs,项目名称:cyclejs,代码行数:24,代码来源:view.ts

示例4: div

 ).map(([
   scoreDom,
   newGameDom,
   gridDom
 ]) => {
   return div('#root', [
     div('.container', [
       header([
         div('.title.bar', [
           h1(['Recall']),
           scoreDom
         ]),
         div('.info', [
           p([
             'Click on the ',
             strong(['nine tiles you see']),
             ' to win!'
           ]),
           newGameDom
         ])
       ]),
       main([
         div('.panel', [gridDom])
       ]),
       footer([
         'Made with ',
         span('.heart', '❤'),
         ' using ',
         span('.cycle', 'Cycle.js'),
         ' by ',
         a('.author', { props: { href: 'https://github.com/artfuldev' } }, '@artfuldev'),
         div([
           a('.source', { props: { href: 'https://github.com/artfuldev/recall-cycle/tree/gh-pages/' } }, 'View Source')
         ])
       ])
     ])
   ]);
 });
开发者ID:artfuldev,项目名称:recall-cycle,代码行数:38,代码来源:view.ts

示例5: div

 .map(toggled =>
   div([
     input({attrs: {type: 'checkbox'}}), 'Toggle me',
     p(toggled ? 'ON' : 'off')
   ])
开发者ID:sambou,项目名称:cyclejs-boilerplate,代码行数:5,代码来源:index.ts

示例6: ul

 const content$ = loaded$.map(loaded =>
   loaded
     ? commitListItemDoms$.map(commits => ul(commits))
     : xs.of(p(['Loading...']))
开发者ID:cyclejs-community,项目名称:typescript-starter-cycle,代码行数:4,代码来源:index.ts

示例7: div

 R.values(state.boards).map(board =>
   div('.p1.border-left.border.right.border-bottom.mx-auto',
     { style: columnStyle, key: board.name }, [
     p('.center.m0', [ board.name ])
   ])
开发者ID:JamesHageman,项目名称:xstream-scrumbler,代码行数:5,代码来源:view.ts


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