我想获得一个类似按钮的对象,该对象由一个 SVG 矩形作为背景和 HTML 文本在前景中组成。Raphael SVG 库为创建、修改和动画 SVG 元素提供了很好的可能性。
我找到了一种解决方案,可以在沿/在 Raphael 对象上的 DIV 元素中绘制 HTML 文本。如何使用 Raphael 的动画方法使文本随背景移动?
我只对基本的 2D 运动感兴趣,没有旋转或变形……我知道我可以使用 Raphael 支持的 SVG 文本元素,但这不允许我进行文本换行、文本样式(css)。我试图找到一种在动画过程中获取动画对象坐标的方法,但没有成功。
这是受上述 mad eby Kelley Reynolds 示例启发的咖啡脚本中的一些示例代码。我的问题是如何将背景的移动与覆盖的 div 同步:
nodeBox = (paper, params, attrs) ->
params = params or {}
attrs = attrs or {}
@paper = paper
@x = params.x or 0
@y = params.y or 0
@width = params.width or @paper.width
@height = params.height or @paper.height
@xMargin = params.xMargin or 5
@yMargin = params.yMargin or 5
@rounding = params.rounding or 0
@backgBox = this.paper.rect(@x-@xMargin, @y-@yMargin, @width+2*@xMargin, @height+2*@yMargin, this.rounding).attr(attrs)
containerId = @backgBox.node.parentNode.parentNode.id
containerId = containerId or @backgBox.node.parentNode.parentNode.parentNode.id
@container = jQuery('#' + containerId)
@div = jQuery('<div style="position: absolute; overflow: auto; width: 0; height: 0;"></div>').insertAfter(@container)
jQuery(document).bind('ready', this, (event) ->
event.data.update()
)
jQuery(window).bind('resize', this, (event) ->
event.data.update()
)
return this
# update function
nodeBox::update = () ->
offset = @container.offset()
@div.css(
'top': (@y + (@rounding) + (offset.top)) + 'px',
'left': (@x + (@rounding) + (offset.left)) + 'px',
'height': (@height - (@rounding*2) + 'px'),
'width': (@width - (@rounding*2) + 'px')
)
# animate function
nodeBox::animate = (attrs, duration, type) ->
@backgBox.animate(attrs, duration, type)
###
Animation of the div ???
###
$(document).ready ->
paper = new Raphael document.getElementById('canvas_container'), '100%', '100%'
node1 = new nodeBox(paper, x:200, y:200, width:200, height:60, rounding: 10, xMargin: 8, yMargin: 4, 'showBorder': true).attr(fill: 'lightblue', stroke: '#3b4449', 'stroke-width': 3)
node1.div.html('This is some crazy content that goes inside of that box that will wrap around.')
node1.div.css('font-family': 'Helvetica','font-size': 16, 'text-align': 'justify')
# animate :
node1.animate({x: moveX}, 1000, 'bounce')