设计|生活|发现新鲜-创意杂货-生日礼物 » Call设计师前,请想想他的家人         function dochange(){ event.srcElement.style.background = "#f3f3f3"; } function doRes(){ event.srcElement.style.background = ""; }                     //'); //]]>       .commentwarrior li *{vertical-align:middle;} .commentwarrior li{border:none; float:left; width:50%;} .commentwarrior li img{margin-right:5px;} .commentwarrior img, .commentwarrior img.avatar{margin-right:6px;margin-bottom:6px;}      .editComment, .editableComment, .textComment{ display: inline;}.comment-childs{border-top: 1px solid #dddddd;border-bottom: 0px solid #000;margin: 5px 10px 10px 80px;padding: 5px 0 0 0;background: #ffffff;}      关注,在新浪围脖获取我们的更新!2010.04.21         2430 posts  ,156992 subscribers since 2006.              /* */      Call设计师前,请想想他的家人2,940views  Jerry @ 13th. 11. 2007  

 在看到这个有趣的图片,来自Blogger,因为作为一个平面设计师太了解这种感受,不得不分享. 84还调了四个不同的颜色的96X96px的适合用于MSN和Gtalk头像的图片放在下面(查看全文),推荐相关从业人员当下来,跟客户沟通的时候设做头像. :-)

 顺便,是台湾的一个设计师创办的类似的分享网站,值得一看.     

       

   不错 (0)一般 (0)无聊 (0) Posted in 有趣新鲜 | 3 Comments »

   订阅到 | ,收藏到QQ书签 | del.icio.us | Google                                      var EYES99 = { MAX_DIST : 20, // furthest pupil can move from center EYE_RADIUS : 39, // half the width of the eye image PUPIL_RADIUS : 2, // half the width of the pupil image pupils : [], init : function() { var app = EYES99; // setup our mousemove handler if (document.addEventListener) { document.addEventListener("mousemove", app.moveEyes, true); } else if (document.attachEvent) { document.attachEvent("onmousemove", app.moveEyes); } // grab references to the pupils app.pupils = [ _gel("EYES_pupil099"), _gel("EYES_pupil199") ]; // Call uninit when leaving page to cleanup the handlers _IG_AddEventHandler("unload", app.uninit); }, uninit : function() { var app = EYES99; // clean up our handlers if (document.addEventListener) { document.removeEventListener("mousemove", app.moveEyes, true); } else if (document.attachEvent) { document.detachEvent("onmousemove", app.moveEyes); } }, moveEyes : function(e) { if (!e) e = window.event; var app = EYES99; for (var i = 0; i < app.pupils.length; i++) { var pupil = app.pupils[i]; // The middle points of the eyes var midx = app.getPagePos(pupil.parentNode,true) + app.EYE_RADIUS; var midy = app.getPagePos(pupil.parentNode,false) + app.EYE_RADIUS; // The distX/distY from eye middles to the mouse var distX = e.clientX + document.documentElement.scrollLeft - midx; var distY = e.clientY + document.documentElement.scrollTop - midy; // The absolute distance from eye middles to the mouse var dist = Math.sqrt(Math.pow(distX, 2) + Math.pow(distY, 2)); if (dist > app.MAX_DIST) { // mouse out of eyeball, scale distX/distY to be at eyeball edge var scale = app.MAX_DIST / dist; distX *= scale; distY *= scale; } // Place the pupil appropriately pupil.style.left = parseInt(distX + app.EYE_RADIUS - app.PUPIL_RADIUS) + "px"; pupil.style.top = parseInt(distY + app.EYE_RADIUS - app.PUPIL_RADIUS) + "px"; } }, // get page coords for an element getPagePos : function(el, left) { var val=0; while(el != null) { val += el["offset"+(left?"Left":"Top")]; el = el.offsetParent; } return val; } }; EYES99.init();     无需注册,即刻发表您的看法!(3)条评论   

  / Nov 13th, 2007 13:27 1 已经换上了

 [Reply]



   

 理查弟弟 / Dec 2nd, 2007 1:08 2 能不能帮忙改个文案版的……

 [Reply]



   

 Lola / Dec 5th, 2007 19:43 3 嗯….

 [Reply]



   RSS feed for comments on this post. TrackBack URL 

 Leave a comment   想要在评论时显示头像? 

 名号*:  E-mail:  URL:    function sc_reload(){ var url=location.href; var temp = url.split("#"); url = temp[0]; url += "#sc_button"; location.href = url; location.reload(); }   .sc_button img{ border:none;}    

  Please note:如果您的评论包含链接,防Spam插件可能推迟您的评论显示的时间,请等待84的审核,在此期间您无需重新提交相同的回复.

   

 



点击取消评论 /* */    /* */      Recent Posts: 











   Timeless Design: 







      /* ==== slider nameSpace ==== */ var slider = function() { /* ==== private methods ==== */ function getElementsByClass(object, tag, className) { var o = object.getElementsByTagName(tag); for ( var i = 0, n = o.length, ret = []; i < n; i++) { if (o[i].className == className) ret.push(o[i]); } if (ret.length == 1) ret = ret[0]; return ret; } function setOpacity (obj,o) { if (obj.filters) obj.filters.alpha.opacity = Math.round(o); else obj.style.opacity = o / 100; } /* ==== Slider Constructor ==== */ function Slider(oCont, speed, iW, iH, oP) { this.slides = []; this.over = false; this.S = this.S0 = speed; this.iW = iW; this.iH = iH; this.oP = oP; this.oc = document.getElementById(oCont); this.frm = getElementsByClass(this.oc, 'div', 'slide'); this.NF = this.frm.length; this.resize(); for (var i = 0; i < this.NF; i++) { this.slides[i] = new Slide(this, i); } this.oc.parent = this; this.view = this.slides[0]; this.Z = this.mx; /* ==== on mouse out event ==== */ this.oc.onmouseout = function () { this.parent.mouseout(); return false; } } Slider.prototype = { /* ==== animation loop ==== */ run : function () { this.Z += this.over ? (this.mn - this.Z) * .5 : (this.mx - this.Z) * .5; this.view.calc(); var i = this.NF; while (i--) this.slides[i].move(); }, /* ==== resize ==== */ resize : function () { this.wh = this.oc.clientWidth; this.ht = this.oc.clientHeight; this.wr = this.wh * this.iW; this.r = this.ht / this.wr; this.mx = this.wh / this.NF; this.mn = (this.wh * (1 - this.iW)) / (this.NF - 1); }, /* ==== rest ==== */ mouseout : function () { this.over = false; setOpacity(this.view.img, this.oP); } } /* ==== Slide Constructor ==== */ Slide = function (parent, N) { this.parent = parent; this.N = N; this.x0 = this.x1 = N * parent.mx; this.v = 0; this.loaded = false; this.cpt = 0; this.start = new Date(); this.obj = parent.frm[N]; this.txt = getElementsByClass(this.obj, 'div', 'text'); this.img = getElementsByClass(this.obj, 'img', 'diapo'); this.bkg = document.createElement('div'); this.bkg.className = 'backgroundText'; this.obj.insertBefore(this.bkg, this.txt); if (N == 0) this.obj.style.borderLeft = 'none'; this.obj.style.left = Math.floor(this.x0) + 'px'; setOpacity(this.img, parent.oP); /* ==== mouse events ==== */ this.obj.parent = this; this.obj.onmouseover = function() { this.parent.over(); return false; } } Slide.prototype = { /* ==== target positions ==== */ calc : function() { var that = this.parent; // left slides for (var i = 0; i <= this.N; i++) { that.slides[i].x1 = i * that.Z; } // right slides for (var i = this.N + 1; i < that.NF; i++) { that.slides[i].x1 = that.wh - (that.NF - i) * that.Z; } }, /* ==== HTML animation : move slides ==== */ move : function() { var that = this.parent; var s = (this.x1 - this.x0) / that.S; /* ==== lateral slide ==== */ if (this.N && Math.abs(s) > .5) { this.obj.style.left = Math.floor(this.x0 += s) + 'px'; } /* ==== vertical text ==== */ var v = (this.N < that.NF - 1) ? that.slides[this.N + 1].x0 - this.x0 : that.wh - this.x0; if (Math.abs(v - this.v) > .5) { this.bkg.style.top = this.txt.style.top = Math.floor(2 + that.ht - (v - that.Z) * that.iH * that.r) + 'px'; this.v = v; this.cpt++; } else { if (!this.pro) { /* ==== adjust speed ==== */ this.pro = true; var tps = new Date() - this.start; if(this.cpt > 1) { that.S = Math.max(2, (28 / (tps / this.cpt)) * that.S0); } } } if (!this.loaded) { if (this.img.complete) { this.img.style.visibility = 'visible'; this.loaded = true; } } }, /* ==== light ==== */ over : function () { this.parent.resize(); this.parent.over = true; setOpacity(this.parent.view.img, this.parent.oP); this.parent.view = this; this.start = new Date(); this.cpt = 0; this.pro = false; this.calc(); setOpacity(this.img, 100); } } /* ==== public method - script initialization ==== */ return { init : function() { // create instances of sliders here // parameters : HTMLcontainer name, speed (2 fast - 20 slow), Horizontal ratio, vertical text ratio, opacity this.s1 = new Slider("slider", 12, 1.84/3, 1/3.2, 70); setInterval("slider.s1.run();", 16); } } }();         地球使用说明书 Energy Savings.            小屋不小 关于小户型的12个奇思妙想       看见时间的影子 18个新奇的钟表设计       Love U 500 Years! 爱你五百年·2010情人节最佳礼物       会发电的墙贴画 生动有趣的场景开关墙贴      买得到的乐趣玩物 前往Since1984官方在线商店      /* ==== start script ==== */ slider.init();      Quick Share   /* */   SwiftPoint,超迷你不手疼的无线鼠 (6) 1 month ago. 5,521views  到货!iPhone专用的不插电大喇叭 (6) 2 months ago. 7,268views  到货!韩国那只Rabito把你的iPhone4变为兔女郎 (3) 3 months ago. 7,808views  便便熏香:每天一小坨,好运连7天! (14) 3 months ago. 16,592views  Traveler’s Notebook,给所有怀着自由心灵的旅人们 (14) 9 months ago. 29,728views  也许是世界上最棒的露天泳池 (73) 12 months ago. 69,595views  Love U 500 Years, 爱你五百年 紧箍咒戒指上架 (49) 1 year ago. 69,535views      更多新鲜快享…

  Recent Comments  樱桃葡萄核桃: 想吃~~ YusaiLai: !!!!哪里有卖啊?! ggg: 不用国外啊,国内就有卖的。淘宝上都100多,实体店就更贵了。不划算 Jel-xu: . . 大圣爷: 个人就算了,车站宾馆等场所要推广 作文很烂的凛热到要溶: !!! 凉茶壶子十牙: 好喜欢! 在好看的纸张上写plan就会感到生活好有动力!~ 凉茶壶子十牙: 这种设计对订书机订起来的杂志挺好,但对胶装书籍和杂志都是伤害。 焚云日: 少吃泡面才是王道。 焚云日: 拿名人开刷,我喜欢。 Sign: 1。不可以放硬币。 2。不可以放信用卡。 特别是第二点,很不适合国外的生活方式。 此刻不逍遥: 这车骑上去一定很拉风 shince: 沙发,爱她就舔她 moozter: 这个是用印泥的吗?那其实还蛮麻烦的。。。 手写还快写。。 shean-钟: 很棒,对设计专业的来说很实用 654656545: 在哪可以买到呢   Creative Commons 本站内容采用共享.网站类转载请务必以超链接形式标明文章出处和作者信息.传统媒体内容合作请联系84.        Catelogs 有趣新鲜 (1279)  产品设计 (1130)  创意家居 (384)  创意杂货 (64)  创意广告 (56)  新鲜快享 (40)  游戏时光 (12)  科技之光 (5)   > 浏览月份归档        Blogroll                        ChouDou              资讯                    分享本文至:          推荐:五百色铅笔团购进行中! 觉得好看就点左边的图标推荐本文哈! 全新改版,增快享版块更多更新鲜!     function myGod(id,w,n){ var box=document.getElementById(id),can=true,w=w||1500,fq=fq||10,n=n==-1?-1:1; box.innerHTML+=box.innerHTML; box.onmouseover=function(){can=false}; box.onmouseout=function(){can=true}; var max=parseInt(box.scrollHeight/2); new function (){ var stop=box.scrollTop%18==0&&!can; if(!stop){ var set=n>0?[max,0]:[0,max]; box.scrollTop==set[0]?box.scrollTop=set[1]:box.scrollTop+=n; }; setTimeout(arguments.callee,box.scrollTop%18?fq:w); }; }; myGod('div4',1500);              |   var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));   try { var pageTracker = _gat._getTracker("UA-568114-2"); pageTracker._trackPageview(); } catch(err) {}