Python论坛  - 讨论区

标题:[python-chinese] [OT]如何实现图片的区域注释?

2006年06月20日 星期二 12:01

Zoom.Quiet zoom.quiet at gmail.com
Tue Jun 20 12:01:20 HKT 2006

应该是使用Ajax 的吧?
俺现在需要快速实现一个实例,大家有什么建议?
有什么框架是直接有类似功能支持的!?

---------- Forwarded message ----------
From: ZoomQuiet <Zoom.Quiet at gmail.com>
Date: Jun 20, 2006 11:59 AM
Subject: 如何实现图片的区域注释?
To: 中国Ajax论坛 <AjaxCn at googlegroups.com>


就是象Flickr 那样儿的效果,
国内的和讯也有实例了,不想作成Flash 的,
大家有什么经验?!

谢谢先!


-- 
"""Time is unimportant, only life important!
blogging  :  http://blog.zoomquiet.org/pyblosxom/
wiki enter:   http://wiki.woodpecker.org.cn/moin/ZoomQuiet
in douban:  http://www.douban.com/people/zoomq/
"""

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年06月20日 星期二 15:15

=?ISO-2022-JP?B?GyRCMnJJJ0duGyhC?= xieyanbo at gmail.com
Tue Jun 20 15:15:52 HKT 2006

On 6/20/06, Zoom. Quiet <zoom.quiet at gmail.com> wrote:
> 应该是使用Ajax 的吧?
> 俺现在需要快速实现一个实例,大家有什么建议?
> 有什么框架是直接有类似功能支持的!?

可以试试用map方式的url,把注释放到url的alt属性中。

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年06月20日 星期二 18:12

Zoom.Quiet zoom.quiet at gmail.com
Tue Jun 20 18:12:29 HKT 2006

On 6/20/06, 解彦博 <xieyanbo at gmail.com> wrote:
> On 6/20/06, Zoom. Quiet <zoom.quiet at gmail.com> wrote:
> > 应该是使用Ajax 的吧?
> > 俺现在需要快速实现一个实例,大家有什么建议?
> > 有什么框架是直接有类似功能支持的!?
>
> 可以试试用map方式的url,把注释放到url的alt属性中。
谢谢建议,
不过是要在线进行编辑的,而且期望有鼠标影响的效果,使用alt 肯定是不行的
因为首先 map 的数据就无法在线直接收集?!


> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>


-- 
"""Time is unimportant, only life important!
blogging  :  http://blog.zoomquiet.org/pyblosxom/
wiki enter:   http://wiki.woodpecker.org.cn/moin/ZoomQuiet
in douban:  http://www.douban.com/people/zoomq/
"""

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年06月20日 星期二 18:32

mikespook mikespook at gmail.com
Tue Jun 20 18:32:35 HKT 2006

如果是PHP

用

作为提交按钮,可获得如下变量~~

$_POST['Submit_x']
$_POST['Submit_y']

分别代表在图片上点击的x,y。

python应该也一样~~没试过~



2006/6/20, Zoom. Quiet <zoom.quiet at gmail.com>:
> On 6/20/06, 解彦博 <xieyanbo at gmail.com> wrote:
> > On 6/20/06, Zoom. Quiet <zoom.quiet at gmail.com> wrote:
> > > 应该是使用Ajax 的吧?
> > > 俺现在需要快速实现一个实例,大家有什么建议?
> > > 有什么框架是直接有类似功能支持的!?
> >
> > 可以试试用map方式的url,把注释放到url的alt属性中。
> 谢谢建议,
> 不过是要在线进行编辑的,而且期望有鼠标影响的效果,使用alt 肯定是不行的
> 因为首先 map 的数据就无法在线直接收集?!
>
>
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
> >
>
>
> --
> """Time is unimportant, only life important!
> blogging  :  http://blog.zoomquiet.org/pyblosxom/
> wiki enter:   http://wiki.woodpecker.org.cn/moin/ZoomQuiet
> in douban:  http://www.douban.com/people/zoomq/
> """
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>


-- 
广州市一方信息咨询有限公司
地址:广州市 江南大道中 穗花村 三巷12号204
邮编:510245
电话:020-39738561 020-39738571
传真:020-84476279
网站:www.i-fang.com
邮件:market at i-fang.com

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年06月20日 星期二 22:47

Andelf andelf at gmail.com
Tue Jun 20 22:47:14 HKT 2006

果然啊~原来这样也可以,我还不知道呢~谢谢了
使用cherrypy测试,得到:
{'Submit': {'y': u'18', 'x': u'26'}}


2006/6/20, mikespook <mikespook at gmail.com>:
>
> 如果是PHP
>
>> 
> 作为提交按钮,可获得如下变量~~
>
> $_POST['Submit_x']
> $_POST['Submit_y']
>
> 分别代表在图片上点击的x,y。
>
> python应该也一样~~没试过~
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060620/ef760a3c/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号