是否可以使用锚标记作为Famo.us Surface的内容?
function _createTitle() {
var titleSurface = new Surface({
size: [true, true],
content: this.options.title, //<a href="#">Click me !</a>
properties: {
color: 'white',
fontFamily: 'AvenirNextCondensed-DemiBold',
fontSize: this.options.fontSize + 'px',
textTransform: 'uppercase',
pointerEvents : 'none',
zIndex:10,
marginTop:'15px'
}
});
我在DOM树中显示锚标记,但我无法点击它,我的光标在悬停时都没有变化。
答案 0 :(得分:0)
通过删除pointerEvents来解决它:&#39; none&#39; porperty。非常自我解释:P我只是没有在我脑海中看到这个属性。