什么用于编码这个网站?

时间:2013-02-05 13:44:05

标签: php javascript jquery scriptaculous

网站sym baloo .com能够在屏幕上移动图标。您可以将小块从一个方块拖放到另一个方块。此外,这必须能够使用磁贴的新位置更新数据库。

任何人都可以告诉我实现这一目标的最佳途径是什么,无论是他们的方式还是其他任何方式。

2 个答案:

答案 0 :(得分:2)

相关网络使用MooTools并可能使用它的扩展来实现拖放效果。查看their builder site以构建您的网站所需的功能。

至于数据库更新,这不是他们使用什么的问题。您需要为它设计自己的数据库模式和后端(PHP,ASP.NET,Ruby ...)。

答案 1 :(得分:0)

-- id = Id of content what u drag--
    $("#id").draggable({
        revert: true
    });
-- id= Id of content where u drop--
        $("#id").droppable();

        $("#id").droppable({
            tolerance: 'touch',
            over: function () {
                $(this).css('backgroundColor', '#cedae3');
            },
            out: function () {
                $(this).css('backgroundColor', '#a6bcce');
            },
}
);