用户进行选择时的Nytimes风格弹出窗口

时间:2009-08-27 20:20:22

标签: javascript jquery

当您在nytimes.com上的文章中选择文字时,这个小吗?弹出最后你的选择:

alt text http://img193.imageshack.us/img193/1316/827200941520pm.png

在我的网站上实施类似内容的最佳方式是什么?有没有预先滚动的库?

2 个答案:

答案 0 :(得分:4)

我认为你必须做这样的事情。

$('div.selectableText').mouseUp(function(e){
        if (window.getSelection()){
            var xCoord = e.pageX;
            var yCoord = e.pageY;

            //Use the coordinates (or maybe offset) 
              to position your little modal popup
        }

)};

答案 1 :(得分:1)