在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:hyperhype/hyperscript开源软件地址:https://github.com/hyperhype/hyperscript开源编程语言:HTML 78.1%开源软件介绍:HyperScriptCreate HyperText with JavaScript, on client or server. See also mercury, a modular ui framework influenced by hyperscript but much more heavily optimized. Examplevar h = require('hyperscript')
h('div#page',
h('div#header',
h('h1.classy', 'h', { style: {'background-color': '#22f'} })),
h('div#menu', { style: {'background-color': '#2f2'} },
h('ul',
h('li', 'one'),
h('li', 'two'),
h('li', 'three'))),
h('h2', 'content title', { style: {'background-color': '#f22'} }),
h('p',
"so it's just like a templating engine,\n",
"but easy to use inline with javascript\n"),
h('p',
"the intention is for this to be used to create\n",
"reusable, interactive html widgets. ")) On the serverYou can still use hyperscript on the server, the limitation is that events don't make sense anymore, but you can use it to generate html: console.log(h('h1', 'hello!').outerHTML)
=> '<h1>hello!</h1>' h (tag, attrs, [text?, Elements?,...])Create an classes & idIf the tag name is of form default tag nameIf the tag name begins with a class or id, it defaults to a AttributesIf an var h = require('hyperscript')
h('a', {href: 'https://npm.im/hyperscript'}, 'hyperscript') Note that hyperscript sets properties on the DOM element object, not
attributes on the HTML element. This makes for better consistency across
browsers and a nicer API for booleans. There are some gotchas, however.
Attributes such as eventsIf an attribute is a function, then it will be registered as an event listener. var h = require('hyperscript')
h('a', {href: '#',
onclick: function (e) {
alert('you are 1,000,000th visitor!')
e.preventDefault()
}
}, 'click here to win a prize') stylesIf an attribute has a style property, then that will be handled specially. var h = require('hyperscript')
h('h1.fun', {style: {'font-family': 'Comic Sans MS'}}, 'Happy Birthday!') or as a string var h = require('hyperscript')
h('h1.fun', {style: 'font-family: Comic Sans MS'}, 'Happy Birthday!') You may pass in attributes in multiple positions, it's no problem! children - stringIf an argument is a string, a TextNode is created in that position. children - HTMLElementIf a argument is a children - null.This is just ignored. children - ArrayEach item in the array is treated like a ordinary child. (string or HTMLElement) this is useful when you want to iterate over an object: var h = require('hyperscript')
var obj = {
a: 'Apple',
b: 'Banana',
c: 'Cherry',
d: 'Durian',
e: 'Elder Berry'
}
h('table',
h('tr', h('th', 'letter'), h('th', 'fruit')),
Object.keys(obj).map(function (k) {
return h('tr',
h('th', k),
h('td', obj[k])
)
})
) Cleaning UpIf you need to clean up a widget created using hyperscript - deregistering all its event handlers and observable listeners, you can use var h = require('hyperscript').context()
var o = require('observable')
var text = o()
text('click here to win a prize')
h('a', {href: '#',
onclick: function (e) {
text('you are 1,000,000th visitor!')
e.preventDefault()
}
}, text)
// then if you want to remove this widget from the page
// to cleanup
h.cleanup() Ecosystem
LicenseMIT |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论