像 Twitter 或 tumblr 一样动态更改页面的外观
我正在尝试找到教程或代码来允许用户自定义他们的页面,就像 twitter、wordpress 和 tumblr 所做的那样。
有人可以告诉我他们使用什么技术吗?
我是一名 .net 开发人员,但也许他们正在使用 jquery?
任何帮助都会很棒。
谢谢
I'm trying to find tutorials or code to allow users to customise their page, just like twitter ,wordpress and tumblr do.
Could someone tell me what technology their using?
i'm a .net developer, but maybe they're using jquery?
Any help would be great.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 javascript 更改样式表和 DOM
You can use javascript to change style sheets and the DOM
问题有点宽泛。要更改页面,您只需操作 DOM 或更改与页面元素关联的 CSS。这可以通过多种方式来完成。例如,您可以动态编写新的 CSS 类,可以向 DOM 本身添加新元素,或者可以修改页面的现有属性。例如,要设置页面的背景,您可以执行以下操作:(
假设 JQuery)
$("body").css('背景图像','url(路径/到/图像)');
希望有帮助,
-fs
Question is a bit broad. To change the page you simply need to manipulate the DOM or change the CSS associated with the page's elements. This can be done any number of ways. E.g. you could write out a new CSS class dynamically, you could add new elements to the DOM itself or you could modify the existing attributes of the page. e.g. to set the background of the page you can do something like:
(assuming JQuery)
$("body").css('background-image','url(path/to/image)');
Hope that helps,
-fs