开发者

profile background customization using jQuery?

开发者 https://www.devze.com 2023-01-23 10:08 出处:网络
I wanted to know how to implement customization in your apps, like the design aspect, like tumblr, posterous and twitter, all use these customizatio开发者_Python百科n tools to allow their users to cus

I wanted to know how to implement customization in your apps, like the design aspect, like tumblr, posterous and twitter, all use these customizatio开发者_Python百科n tools to allow their users to customize, do they have their own css file for each user, or is it pulled from the database, how does it work thanks?

p.s. if there is a plugin or class that helps with this, it will be greatly appreciated


For each user in database, have stored css values:

and your have php file that generates css.

//css

background-image:url(<?php echo $user['background-image']; ?>);

variable $user comes from database

0

精彩评论

暂无评论...
验证码 换一张
取 消