首页| 登录| 注册| 插件下载| 使用帮助| 意见反馈|
 
 我的首页
 我的资料
 我的列表
 我的标签
 我的好友
 我的粉丝
 网友留言
Web design 简约版
显示目录
编  辑: HOLDEN 发行日期: 2006-11-30 09:30:12
#0
Why Circle of Friends Works in Social Networking
标签: [social network] [Web design]
2007-05-01 07:46:12 摘自 bokardo.com 阅读原文
POST
April 12th, 2007
Why Circle of Friends Works in Social NetworkingThe most popular paradigm for social networking sites is the “circle of friends” paradigm. This is when you connect to people by adding them as a friend, and your connection means that they are prioritized differently than those who are not. There are other paradigms, too. Wikipediamentionsa couple others including “Old Boys Network” (classmates.com) and “Circle of Trust” (epinions).
Although organizing around friends seems like an obvious way to do things, it wasn’t obvious at first and in some cases is still not obvious. Though much of how we think about our own lives is in terms of friends, its still another step to build software that recognizes this and leverages it to make social interaction work. One of the first to do this wasPlanetAll, sold to Amazon in 1998, and was the foundation of the Friends feature there. Up until then many networking sites had tried to connect people who didn’t already know each other…instead of leveraging people who were already friends. Duh, right? Well…hindsight is 20/20…
A great example of this difference is explained in this article aboutFriendsterfounder Jonathan Abrams.What I Learned from Friendster. He explains that what makes his new startup,Socializer, different from other event sites likeeviteis that you can connect to people in a circle-of-friends fashion. In other words, your event information is prioritized differently according to who your friends are. Their events will show up on your calendar and vice-versa.
In some cases (like the professional arena) a circle-of-friends paradigm isn’t going to work. At that point a contacts-based paradigm will be more appropriate. It’s not hard to see how we can map our real life to software, but it does take a certain amount of suspension of disbelief. We have to believe that the system is modeling how things really are, and so using appropriate relationship words helps designers achieve that.
In terms of social networking, however, everyone, at all points in their life, can describe themselves in terms of their friends and organizing information in that way makes perfect sense. That’s why circle-of-friends systems are so prevalent. It works because it is the primary way that we view our social lives. Another reason why they say you can get a good sense of someone by looking at their friends.
If you enjoyed reading this, subscribe to my RSS Feed(you can always unsubscribe later)
详细...
评论(0) | 收藏 | 389位读者
#1
Comic: Content or Design?
标签: [Web design]
2007-05-01 07:31:14 摘自 bokardo.com 阅读原文
WHAT IS SOCIAL DESIGN?
Social designis a subset of design that focuses on the social lives of users. It deals with the activities, behaviors, and motivations of people who work and play together through software interfaces. In the early days of the Web, most sites were read-only, focused on providing information to a single person at a time. Then the Web became read/write, allowing people to save information but still mostly for them acting alone. Now, we're seeing a tremendous amount of social software that allows many people to collaborate and share what they're doing with others. Designing for this social world is
social design, and that's what we're talking about here at Bokardo.
详细...
评论(0) | 收藏 | 360位读者
#2
Web 2.0 Design Kit, Part 2 | Photoshop Lab
标签: [Web design]
2007-04-11 13:06:09 摘自 www.photoshoplab.com 阅读原文
I've found that if you don't put your cursor exactly on the intersection of pixels in photoshop (e.g. so that zoomed in you see 1.00 and 9.00 in the info palette) then you can run into issues with the edges of the rounded rectangles. That said, you absolutely can get perfectly smooth rounded corners using the rounded corners shape with the extra added benefit of it not taking 5 steps ;-)
详细...
评论(0) | 收藏 | 366位读者
#3
10 Good Deeds in Web Design (Alertbox Oct. 1999)
标签: [Web design]
2007-04-11 12:28:43 摘自 www.useit.com 阅读原文
Here's a list of ten additional design elements that will increase the usability of virtually all sites: Place your name and logo on every page and make the logo a link to the home page (except on the home page itself, where the logo should not be a link: never have a link that points right back to the current page). Provide search if the site has more than 100 pages. Write straightforward and simple headlines and page titles that clearly explain what the page is about and that will make sense when read out-of-context in a search engine results listing. Structure the page to facilitate scanning and help users ignore large chunks of the page in a single glance: for example, use grouping and subheadings to break a long list into several smaller units. Instead of cramming everything about a product or topic into a single, infinite page, use hypertext to structure the content space into a starting page that provides an overview and several secondary pages that each focus on a specific topic. The goal is to allow users to avoid wasting time on those subtopics that don't concern them. Use product photos, but avoid cluttered and bloated product family pages with lots of photos. Instead have a small photo on each of the individual product pages and link the photo to one or more bigger ones that show as much detail as users need. This varies depending on type of product. Some products may even need zoomable or rotatable photos, but reserve all such advanced features for the secondary pages. The primary product page must be fast and should be limited to a thumbnail shot. Use relevance-enhanced image reduction when preparing small photos and images: instead of simply resizing the original image to a tiny and unreadable thumbnail, zoom in on the most relevant detail and use a combination of cropping and resizing. Use link titles to provide users with a preview of where each link will take them, before they have clicked on it. Ensure that all important pages
详细...
评论(0) | 收藏 | 348位读者
#4
Web 3.0: When Web Sites Become Web Services
标签: [web] [web service]
2007-03-20 10:53:35 摘自 www.readwriteweb.com 阅读原文
Web Scraping is essentially reverse engineering of HTML pages. It can also be thought of as parsing out chunks of information from a page. Web pages are coded in HTML, which uses a tree-like structure to represent the information. The actual data is mingled with layout and rendering information and is not readily available to a computer. Scrapers are the programs that know how to get the data back from a given HTML page. They work by learning the details of the particular markup and figuring out where the actual data is. For example, in the illustration below the scraper extracts URLs from the del.icio.us page. By applying such a scraper, it is possible to discover what URLs are tagged with any given tag.
详细...
评论(0) | 收藏 | 427位读者
#5
PHP实现MVC开发得最简单的方法——视图及模版技术
标签: [PHP]
2007-03-14 12:09:32 摘自 www.phpobject.net 阅读原文
模版系统原理其实很简单,就是把标签替换成相应的数据。但每个模版系统的实现方式都不完全一样,比如说smarty是编译型的,它第一个是把模版文件编译成相应的php文件,然后以后每次就直接调用编译后的文件,而PHPLIB是解析性的,每次都调用模版使用正则来替换。所以除了第一次smarty相对来说更加快。但是我不觉得使用标签有什么特别得好处。所谓得标签实现美工和程序分类,我认为是扯蛋。对于美工人员来说 {$var}和 有什么区别呢?
详细...
评论(0) | 收藏 | 396位读者
#6
CSS Image Maps - Flickr-like Technique
标签: [css] [Image map]
2007-03-11 06:44:49 摘自 www.frankmanno.com 阅读原文
While this may not be the most ideal solution out there, it certainly expands upon the examples listed above. I absolutely loved Gina's idea, which is why I attempted to expand on it. Unfortunately, with the current limitations of CSS (as well as certain browsers), I wasn't able to fully replicate the exact functionality of Gina's example.
详细...
评论(0) | 收藏 | 401位读者
#7
CSS Creator Tools
标签: [Web design] [CSS. Tool]
2007-03-11 05:58:24 摘自 www.csscreator.com 阅读原文
A simple multi level drop down menu which uses only CSS for most browsers and minimalist JavaScript with CSS for browsers that require an extra hand. A menu color generator helps you style the menu for your site.
详细...
评论(0) | 收藏 | 437位读者
#8
25 Code Snippets for Web Designers (Part1)
标签: [Web design]
2007-03-11 05:50:50 摘自 www.tutorialblog.org 阅读原文
- Here’s a fairly typical vertical bar graph showing a hypothetical set of quarterly data for, say, invoice and collection totals. The difference here is that the whole thing is a simple set of nested lists and CSS. Really.
详细...
评论(0) | 收藏 | 449位读者
#9
Create a full Flash Web site tutorial using Macromedia Flash
标签: [Web design] [flash]
2007-03-11 05:48:47 摘自 www.free-webmaster-resource.com 阅读原文
This tutorial is written for the users that are new to Flash but aren't afraid to learn some new things. You will learn everything you will need to setup your first Full Macromedia Flash Web site, and not just some static looking HTML like page. I want to show all of you that you don't have to be some wizzard to get some nice things going in Flash.
手把手教你如何创建一个纯flash的网站 详细...
评论(0) | 收藏 | 793位读者
#10
CSS Showcase
标签: [css] [Web design]
2007-03-11 03:47:46 摘自 www.alvit.de 阅读原文
CSS Navigation Menus, Tabs and CSS Navigation Techniques Showcase
很多很好的例子可以参照…… 详细...
评论(0) | 收藏 | 345位读者
#11
53 CSS-Techniques You Couldn’t Live Without | Smashing Magazine
标签: [Web design] [css]
2007-03-11 03:45:16 摘自 www.smashingmagazine.com 阅读原文
It is clear that today, more and more tasks are made easier through web applications, and WriteMaps strives to join that cause. The idea for WriteMaps began after writing a tutorial on an html visual sitemap technique. Although crude in appearance, the technique was functional and received great recognition, but unfortunately it required fairly complex code to use. It was good for a proof of concept, but fell short in practicality. The next logical step was to use this technique in a web application as a way of visualizing user-generated content.
详细...
评论(0) | 收藏 | 250位读者
#12
CSS Tip: Get Any Font You Want
标签: [css] [Web design]
2007-03-11 03:44:55 摘自 www.netmechanic.com 阅读原文
Finding fonts is easy. Open your favorite search engine or directory and search on terms like free fonts or downloadable fonts. A recent search on Google under the term free fonts returned 112,000 hits. Once you've found the perfect font, you're ready to download it to your computer and use it in your page design.
如何让你的网页可以显示任何字体 详细...
评论(0) | 收藏 | 248位读者
#13
HTML Dog - HTML and CSS Tutorials, References, and Articles |
标签: [HTML] [css] [Tutorial] [Web design]
2007-03-11 03:40:36 摘自 www.htmldog.com 阅读原文
Welcome to HTML Dog, the web designer's resource for everything HTML and CSS, the most common technologies used in making web pages.
详细...
评论(0) | 收藏 | 310位读者
#14
CSS Cheat Sheet
标签: [Web design] [css]
2007-03-11 03:32:43 摘自 lesliefranke.com 阅读原文
CSS Cheat Sheet.一张纸把css的基本语法和属性都包含了
详细...
评论(0) | 收藏 | 363位读者
#15
8 web menus you just can't miss
标签: [Web design] [css] [menu]
2007-03-11 03:30:43 摘自 www.roscripts.com 阅读原文
Writing for roScripts can have many advantages. Our site is visited by many webmasters, programmers, designers and web developers but also by people interested in hiring someone. roScripts.com will give you maximum exposure when you submit an article offering you the possibility to create a profile with a direct link to your homepage, your contact page or (if you don't have a website) we will provide an email contact form in order for our visitors to easily contact you. An RSS feed with the author's articles will be provided as well. All of these features will be shown on the members page and also on every article that is submitted by you.
详细...
评论(0) | 收藏 | 266位读者
#16
Web 2.0 Tutorials Round-Up | Smashing Magazine
标签: [Web design] [web 2.0]
2007-03-11 03:26:12 摘自 www.smashingmagazine.com 阅读原文
Web 2.0 Tutorials Round-Up Web 2.0 is beautiful. In fact, many designers manage to create really amazing, particularly dark and fresh web-designs, which are visually appealing and make a great first impression. However, if you are planning on designing a web 2.0-project, you probably should know how and where to start from. Badges, Gradients, Mirror and Shadow Effects as well as Shiny and Glassy buttons are trendy. But do you know exactly how to design them? […]
详细...
评论(0) | 收藏 | 238位读者
#17
The Art of Navigation @ Dan Rubin’s SuperfluousBanter
标签: [Web design]
2007-03-11 03:25:30 摘自 superfluousbanter.org 阅读原文
Unbelievable…Very very nice! I have been using css since 1999 and only now am brave enough to try to extend its simple power and promise to commercial web sites. I wish to change my little world of connections with code as elegant as this. It renders great in IE6 and MOZ. Exquisite! THIS is the future and we need to carry the torch. I am humbled somewhat by the vastness of what is yet to learn but I am willing. Good work. Know that I am a designer inspired.
详细...
评论(0) | 收藏 | 236位读者
#18
50 sources for web design inspiration by Fuzzy Future
标签: [Web design]
2007-03-11 03:21:42 摘自 www.fuzzyfuture.com 阅读原文
I said that our goal was to build content that other people can use to improve their own projects. Almost every day, while I’m checking out a blog or social bookmark sitelike Del.icio.us or Digg, I see a post entitled something along the lines of “50 beautiful web designs” or “25 amazing wordpress templates.” As aweb developer and not reallya web designer, I always love these posts because they’re great inspiration for the next time Ineed tocreate my own template, theme, site, etc. Over the years I’ve managed to build up a decent bookmark list of these “inspirational” sites so I thought I would put them all in one place for other people to take advantage of as well.
详细...
评论(0) | 收藏 | 224位读者
#19
Spiffy Corners
标签: [Web design] [rounded corner] [css]
2007-03-11 03:20:58 摘自 www.spiffycorners.com 阅读原文
Anti-aliased rounded corners using pure CSS. No Images. No Javascript. No fluff.
一个直接获得圆角边框CSS代码的小工具 详细...
评论(0) | 收藏 | 275位读者
#20
The Best Designs
标签: [Web design]
2007-03-11 03:14:33 摘自 www.thebestdesigns.com 阅读原文
The Best Flash and CSS Web Design
详细...
评论(0) | 收藏 | 263位读者
#21
13Styles.com - css menu styles, high quality css menus, website nav...
标签: [Web design] [css] [menu]
2007-03-11 03:10:16 摘自 www.13styles.com 阅读原文
13styles is all about css website navigation menus. The menus are list based, very light-weight, easy to implement, and cross-browser compliant. Some of the css menus are free and some require you to purchase rights to use them.
详细...
评论(0) | 收藏 | 207位读者
#22
Resources For Web Design
标签: [Web design]
2007-03-11 03:03:42 摘自 www.kayodeok.btinternet.co.uk 阅读原文
详细...
评论(0) | 收藏 | 258位读者
#23
关于ASP图象问题总结
标签: [ASP]
2007-03-06 02:15:06 摘自 lzjx.com 阅读原文
问题在于你显示文字信息时HTML的HEAD中的CONTENT=“TEXT/HTML”,而显示图象则必须是 CONTENT=“IMAGE/GIF”或者是CONTENT=”IMAGE/JPEG“。因此你是无法只用一个ASP文件就把文字信息和 图象都处理完的,解决的办法是:用一个单独的ASP文件处理图象,然后在处理文字信息的ASP文件中调用 这个ASP文件。
详细...
评论(0) | 收藏 | 228位读者
#24
We We Calculator - measure your copy for customer focus
标签: [SEO] [Search Engine Optimization]
2007-02-10 11:24:33 摘自 www.futurenowinc.com 阅读原文
As proud as you may be of your company and your product or service, most customers only care about how well you can help them meet their wants and needs. If you want more of them to buy, your focus has to be on your customer. How do you communicate that to them? With the words you use on your site. Are you talking mostly about them and their needs or are you talking mostly about yourself?
详细...
评论(0) | 收藏 | 268位读者
#25