推荐阅读

Photoshop设计高大上的奔驰汽车海报设计教程
本教程主要是用photoshop设计蓝色大气的奔驰汽车海报教程,效果图看上去不复杂,不过合成的时候有很多细节需要处理。首先是云彩部分的抠图,并搭建出想要的云彩组合图案;再加入汽车,根据光源位置调整局部明暗,轮胎位置要增加动感气流;最后是整体把控,把车云等完美融合,再渲染好颜色即可。最终效果1、素材提取。这里我们先抠出车子。(直接钢笔)反转一下,转为智能对象备用。2、云朵抠图(这里要注意了。我们要得到那种实心的大云朵,而不是虚虚散散的浮云。同样在红色通道里面抠出,不过,如通道所示,我们要扣实心,即把云和天分离,较为明确的分离。3、抠出来,Ctrl+Shift+U,去色处理,备用。

把女友拍文艺有绝招
“不管你手里的器材有多牛x,把女朋友拍好看了才是正经事儿,她鼻梁塌你就别拍侧面,她脸盘儿大你就别仰拍。她不会摆pose放不开,你就别慢悠悠喊123半天不按快门,拍得她笑容僵硬。搞清楚这些要比光圈、快门、白平衡更重要,你把黄山拍得再漂亮能怎样?黄山又不会嫁给你!”一条最近异常火爆的微博,引来网友纷纷转发热议调侃这一话题,来自上海的CheerJason《一个摄影师的觉悟》。的确,摄影就是生活的艺术,懂得欣赏和发现美的才是生活的真谛。 一、大光圈 使用大光圈,但不要迷信大光圈,单纯考虑光圈的大小,不考虑曝光时间的长短。理论上讲在拍摄的图像来说只有景深的变化,而锐度、颜色之类的没有什么不同。实际上,由于镜头本身的光学质量问题,在光圈极大和极小的时候,成像效果会有些影响。一般镜头在最大光圈降两档的时候成像效果才是最好的。二、玩逆光 首先想几个问题,什么是逆光拍摄?是自然光还是灯光?是拍人物的正面还是背面?是拍近景还是拍全景?以上图在阳光下为例,拍女朋友的侧面中景,逆光拍应注意的几个问题: 1、注意补光,即用反光板补脸部阴影部分,但要注意分寸不要补得太亮,要保持逆光效果。 2、注意曝光,相机都有逆光补偿钮,如果觉得太亮,可以用手动控制曝光补偿。 3、注意选择光的高度,顶光不适合拍摄人物近景。 4、注意选择较暗的背景,否则得到剪影效果。 5、注意不要让镜头进光,带上遮光罩以免破坏画面。

DW编主页的一个小问题
- 事情是这样的: 我用Css主要是改变一下我的超级连接的颜色和下划线的有无。正是由于他的简单,而使他带来了一个小问题…… Dreamweaver编主页的一个小问题 Dreamweaver应该大家都知道吧(以下简称DW),这是著名美国MACROMEDIA公司开发的集网页制作和管理网站于一身的所见即所得网页编辑器。由于DW的功能之强大,所以可以在他里面直接定义css(样式表),而就是这css给我出了个小难题。 事情是这样的, 我用css主要是改变一下我的超级连接的颜色和下划线的有无。在DW里定义css的确很方便,里面的参数他都为你设置好了,只要你点鼠标就行了。正是由于他的简单,而使他带来了一个小问题(就我自己认为): < style type="text/css"> < !-- a:hover { color: #FF3333; text-decoration: underline} a:link { color: #3333FF; text-decoration: none} a:visited { color: #3333FF; text-decoration: none} --> < /style> 以上就是DW生成的css源码,这段源码的意思就是去掉超级连接的下划线,鼠标移上去的进候改变颜色并添加下划线,连接后的颜色不变为蓝色。我本意也是如此,可是在IE里浏览的结果告诉你,不是这样的。而是有一点点小改变,就是连接了之后,当鼠标再次移上去的时候,本来是有下划线的,变成没有了。这是什么原因呢,一般来说是有的呀!那是为什么了,接着我从别的网站找了一个和我定义的差不多的css,分析一下他们的css源码,差不多呀(就颜色不同和多了一些其它参数),其它多的参数很快被我排除,因为那些参数我用不着,就停在颜色上,刚开始我还以为我是色盲呢!但是还是很快就又否定了,我把找到的css放到我的主页上很正常,并把颜色改成我的颜色,还是很正常。这也不是,那也不是,那为什么了。为什么一样的代码会有两种效果?为什么… 就在我准备上网求助的时候,突然我的眼睛一亮,该不会是这个原因吧!原来那个我找来的代码和我自己的代码,只有一点点不同就是---顺序不同,因为我想顺序不是很重要吧!就没有注意。接下来就是改了,再一试,哇,成功!唉看来以后定义css只有手写的或在DW里定义了再改。真麻烦,我还以为有DW就变简单呢,没想到还是要手定代码。如果那位高手还有好办法请来信告之!以下是改了的代码:(是不是不容易注意啊!) < style type="text/css"> < !-- a:link { color: #3333FF; text-decoration: none} a:visited { color: #3333FF; text-decoration: none} a:hover { color: #FF3333; text-decoration: underline} --> < /style> 唉!这小问题真是害我不浅,为了不让他再去害人,我把他写出来供大家看看,不要在犯我这样的错!

PS色板设置前景色与背景色
色板颜色只能设置背景颜色,我们要设置前景颜色的话,那要先设置背景颜色后,进行颜色切换。那成完成。下面我们要开始介绍设置过程吧!第一步:窗口菜单,点击色板。第二步:就会打开色板对话框,就可以看到很多颜色。第三步:点击色板上面的绿色。你会发现背景颜色变成了绿色。第四步:点击前景色与背景色换切工具,第五步:再点击红色,背景色变成了红色。用这样的方法就可以完成背景色与前景色的设置了。
最新发布

Photoshop制作极简风格的2018海报设计教程
我们先来看看效果图:步骤1:打开PS,新建一个800*600的画布。给画布填充颜色:#f2f3f5。在画布中间建一个尺寸为710*452的矩形;填充颜色:#ffffff。步骤2:画一个48*300的矩形,填充渐变色:#58adfe~#98d6ff叫,角度60。添加投影:#0080ff,不透明度30%,角度90,距离8,大小12。然后将矩形旋转40度,放在画布右下角。步骤3:画一个154*154的正圆,填充渐变色:#ffa76d~#ff6796~#ff6695,角度60。用路径选择工具选中这个正圆后在它的中心画一个102*102的正圆。画这个圆的时候按住ALT键即可完成布尔运算的减法运算;添加投影:#ff0140,不透明度30%,角度90,距离6,大小16。将正圆放在画布左上角。

Photoshop制作时尚的明星抖音风格海报设计教程
最终效果一、人物图片的选择先思考下,抖音风这一类的设计能够运用在什么设计上,据我的分析该风格并不适合运用于所有的设计,大概可以运用在促销、激情、科技感、运动感强烈的设计中,那么我这里选择制作一位歌手的海报——李克勤。在百度中找到自己喜欢的歌手图片保存下来(照片尽量选一些背景不是很复杂的,这样我们就不用去抠图,因为复杂的背景会影响我们前面人物的视觉效果)。二、创建颜色误差1、打开PS,新建大小210mm*297mm,分辨率72。2、菜单——文件——置入嵌入对象(找到我们刚刚保存的图片)。这里我运用了九宫格原理进行构图,图层名字改为李克勤。

制作大气清爽的护肤品海报的PS海报设计教程
希望能给有基础的同学带来一些对场景、对合成的思路指导;也希望这篇教程能够给你们带来一些启发;你们认同是我继续下去的最大动力。最终效果1、构思。2、素材收集。3、画出草图。 4、拼背景。

Photoshop制作凹陷效果的LOGO设计教程
教程所需要的素材:LOGO刻印效果PS教程素材先看看效果图1、如何以正确的视角来创建一个对象步骤1:下载纸张纹理素材,并用Photoshop打开它。第2步:下载透视图像素材并用Photoshop打开。第3步:选择顶部菜单中的选择>全部,然后选择编辑>复制将选择复制到剪贴板。返回到背景文档,然后在顶部菜单中选择 编辑>粘贴将透视图像粘贴 到背景上。通过双击直接在图层面板中的图层名称并将其更改为“Perspective-image” 【透视图层】来重命名该图层 。

Emmet(Zen coding)HTML代码使用技巧七则
还记得Emmet(即Zen coding)吗?最棒的书写HTML代码的利器之一,能够帮助你快速书写HTML代码的工具。在今天这篇文章中,我们将要分享7个超酷的Emmet书写HTML的技巧,希望大家喜欢!1. 跳过Div第一个小技巧就是跳过div,Emment非常清楚你需要输入什么内容,你只需要输入class或者是id,Emmet会自动帮助你生成正确的div。如下:大家可以看到,不管你是否添加了div,Emmet都会自动生成需要div元素。含糊标签名称这个技巧属于implicit tag names特性,你不需要指定div或者li,Emmet会自动帮助你生成,如下: 2. 带有DOM导航的链式缩写

CSS3实例教程:详解Media Queries片段
Responsive设计在现代Web设计中可谓是越来越流行,但很同学们并未理解其真正的设计概念,往往把Responsive视为一种自适应布局。当然有很多同学也在尝试动写Responsive的案例,但如何取其断点左右纠结,如何设置哪几个断点?又从何入手?Responsive中的断点都依赖于CSS3的Media Queries来决断。曾在CSS3 Media Queries模板、使用em单位创建CSS3的Media Queries和iPads和iPones的Media Queries有过这方面的介绍。今天特意根据一些Responsive框架整理了一些常见的Media Queries片段,以供大家参考:在这里主要分成三类:移动端、PC端以及一些常见的响应式框架的Media Queries片段。 @media screen and (device-aspect-ratio: 40/71) {}或者:@media screen and (device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2){} iPhone 5 In Portrait & Landscape @media only screenand (min-device-width : 320px)and (max-device-width : 568px){// CSS Style} iPhone 5 In Landscape @media only screenand (min-device-width : 320px)and (max-device-width : 568px)and (orientation : landscape){// CSS Style} iPhone 5 In Portrait @media only screenand (min-device-width : 320px)and (max-device-width : 568px)and (orientation : portrait){// CSS Style} iPone4 @media only screen and (-webkit-min-device-pixel-ratio : 1.5), only screen and (min-device-pixel-ratio : 1.5) {} iPhone 3G @media screen and (device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 1){} iPhone /*Landscape*/@media screen and (max-device-width: 480px) {}/*Portrait*/@media screen and (max-device-width: 320px) {} Blackberry Torch @media screen and (max-device-width: 480px) {} Samsung S3 @media only screen and (-webkit-device-pixel-ratio: 2) {} Google Nexus 7 @media screen and (device-width: 600px) and (device-height: 905px) and (-webkit-min-device-pixel-ratio: 1.331) and (-webkit-max-device-pixel-ratio: 1.332) {} Samsung Galaxy S3 @media only screen and (-webkit-device-pixel-ratio: 2) {} Samsung Galaxy S2 @media screen and (device-width: 320px) and (device-height: 533px) and (-webkit-device-pixel-ratio: 1.5) {} Galaxy Tab 10.1 /*Landscape*/@media (max-device-width: 1280px) and (orientation: landscape) {}/*Portrait*/@media (max-device-width: 800px) and (orientation: portrait) {} iPad In Portrait & Landscape @media only screenand (min-device-width : 768px)and (max-device-width : 1024px){// CSS Styles} iPad In Landscape @media only screenand (min-device-width : 768px)and (max-device-width : 1024px)and (orientation : landscape){// CSS Styles} iPad In Portrait @media only screenand (min-device-width : 768px)and (max-device-width : 1024px)and (orientation : portrait){// CSS Styles} Retina iPad In Portrait & Landscape @media only screenand (min-device-width : 768px)and (max-device-width : 1024px)and (-webkit-min-device-pixel-ratio: 2){// CSS Styles} Retina iPad in landscape @media only screenand (min-device-width : 768px)and (max-device-width : 1024px)and (orientation : landscape)and (-webkit-min-device-pixel-ratio: 2){// CSS Styles} Retina iPad in portrait @media only screenand (min-device-width : 768px)and (max-device-width : 1024px)and (orientation : portrait)and (-webkit-min-device-pixel-ratio: 2){// CSS Styles} iPad Mini In Portrait & Landscape @media only screenand (min-device-width : 768px)and (max-device-width : 1024px)and (-webkit-min-device-pixel-ratio: 1){// CSS Style} iPad Mini In Landscape @media only screenand (min-device-width : 768px)and (max-device-width : 1024px)and (orientation : landscape)and (-webkit-min-device-pixel-ratio: 1){// CSS Style} iPad Mini In Portrait @media only screenand (min-device-width : 768px)and (max-device-width : 1024px)and (orientation : portrait)and (-webkit-min-device-pixel-ratio: 1) {// CSS Style} 桌面端 320px @media screen and (max-width: 320px) {} 640px @media screen and (max-width: 640px) {} 800px @media screen and (max-width: 800px) {} 1024px @media screen and (max-width: 1024px) {} 1028px @media screen and (max-width: 1028px) {} 除了上面的常见Media Queries片段之外,下面的网站还提供了一些其他的片段: /*URL:http://html5boilerplate.com/*/ /* Smartphones (portrait and landscape) ----------- */@media only screenand (min-width : 320px)and (max-width : 480px) {/* Styles */}/* Smartphones (landscape) ----------- */@media only screenand (min-width : 321px) {/* Styles */}/* Smartphones (portrait) ----------- */@media only screenand (max-width : 320px) {/* Styles */}/* iPads (portrait and landscape) ----------- */@media only screenand (min-width : 768px)and (max-width : 1024px) {/* Styles */}/* iPads (landscape) ----------- */@media only screenand (min-width : 768px)and (max-width : 1024px)and (orientation : landscape) {/* Styles */}/* iPads (portrait) ----------- */@media only screenand (min-width : 768px)and (max-width : 1024px)and (orientation : portrait) {/* Styles */}/* Desktops and laptops ----------- */@media only screenand (min-width : 1224px) {/* Styles */}/* Large screens ----------- */@media only screenand (min-width : 1824px) {/* Styles */}/* iPhone 4 ----------- */@mediaonly screen and (-webkit-min-device-pixel-ratio : 1.5),only screen and (min-device-pixel-ratio : 1.5) {/* Styles */} Bootstrap的Media Queries /*URL:http://twitter.github.com/bootstrap*/ /* Large desktop */@media (min-width: 1200px) { ... } /* Portrait tablet to landscape and desktop */@media (min-width: 768px) and (max-width: 979px) { ... } /* Landscape phone to portrait tablet */@media (max-width: 767px) { ... } /* Landscape phones and down */@media (max-width: 480px) { ... } Foundation的Media Queries /*URL:http://foundation.zurb.com/*/ /* We use this media query to add styles to any device that supports media queries */@media only screen { }/* Used to alter styles for screens at least 768px wide. This is where the grid changes. */@media only screen and (min-width: 768px) {}/* Used to alter styles for screens at least 1280px wide. */@media only screen and (min-width: 1280px) {}/* Used to alter styles for screens at least 1440px wide. */@media only screen and (min-width: 1440px) {}/* Apply styles to screens in landscape orientation */@media only screen and (orientation: landscape) {}/* Apply styles to screens in portrait orientation */@media only screen and (orientation: portrait) {} Skeleton的Media Queries /*URL:http://www.getskeleton.com*/ /* Smaller than standard 960 (devices and browsers) */@media only screen and (max-width: 959px) {}/* Tablet Portrait size to standard 960 (devices and browsers) */@media only screen and (min-width: 768px) and (max-width: 959px) {}/* All Mobile Sizes (devices and browser) */@media only screen and (max-width: 767px) {}/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */@media only screen and (min-width: 480px) and (max-width: 767px) {}/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */@media only screen and (max-width: 479px) {} FRAMELESS的Media Queries /*URL:http://framelessgrid.com/*/@media screen and (max-width: 16.875em){}@media screen and (min-width: 32.5em) and (max-width: 37.4375em), screen and (min-width: 45em) and (max-width: 56.9375em), screen and (min-width: 77.5em) and (max-width: 102.4375em), screen and (min-width: 135em){}@media screen and (min-width: 102.5em) and (max-width: 117.9375em), screen and (min-width: 150em){}@media screen and (min-width: 15em){}@media screen and (min-width: 30em){}@media screen and (min-width: 37.5em){}@media screen and (min-width: 57em){}@media screen and (min-width: 57em) and (max-width: 117.9375em){}@media screen and (min-width: 118em){} Susy的Media Queries /*URL:http://susy.oddbird.net/*/@media (min-width: 29em) {}@media (min-width: 30em) and (max-width: 60em) {}@media (min-width: 119em) {}@media (min-width: 33.75em) and (max-width: 67.5em) {}@media (min-width: 33.75em) and (max-width: 67.5em) {} Less Framework 4 /*URL:http://lessframework.com/*/ @media only screen and (min-width: 768px) and (max-width: 991px) {}/* Mobile Layout: 320px (20em). */@media only screen and (max-width: 767px) {}/*Wide Mobile Layout: 480px (30em)*/@media only screen and (min-width: 480px) and (max-width: 767px) {} Golden Grid System的Media Queries /*URL:http://goldengridsystem.com/*//* @media screen and (min-width: 640px) */@media screen and (min-width: 40em) {}/* @media screen and (min-width: 720px) */@media screen and (min-width: 45em) {}/* @media screen and (min-width: 888px) */@media screen and (min-width: 55.5em) {}/* @media screen and (min-width: 984px) */@media screen and (min-width: 61.5em) {}/* @media screen and (min-width: 1200px) */@media screen and (min-width: 75em) {}/* @media screen and (min-width: 1392px) */@media screen and (min-width: 87em) {}/* @media screen and (min-width: 1680px) */@media screen and (min-width: 105em) {}/* @media screen and (min-width: 1872px) */@media screen and (min-width: 117em) {}/* @media screen and (min-width: 2080px) */@media screen and (min-width: 130em) {} Fluid baseline的Media Queries /*URL:http://fluidbaselinegrid.com/*//* MOBILE PORTRAIT */@media only screen and (min-width: 320px) {}/* MOBILE LANDSCAPE */@media only screen and (min-width: 480px) {}/* SMALL TABLET */@media only screen and (min-width: 600px) {}/* TABLET/NETBOOK */@media only screen and (min-width: 768px) {}/* LANDSCAPE TABLET/NETBOOK/LAPTOP */@media only screen and (min-width: 1024px) {}@media only screen and (min-width: 1280px) {}/* WIDESCREEN *//* Increased body size for legibility */@media only screen and (min-width: 1400px) {} 320andUP /*URL:http://stuffandnonsense.co.uk/projects/320andup*/@media only screen and (min-width: 480px) { /* 480 */}@media only screen and (min-width: 600px) { /* 600 */}@media only screen and (min-width: 768px) { /* 768*/}@media only screen and (min-width: 992px) { /* 992*/}@media only screen and (min-width: 1382px) { /* 1382 */ }@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) { /* 2x*/} Gridless /* URL:http://thatcoolguy.github.com/gridless-boilerplate/ */@media only screen and (min-width: 480px) { /* Wide mobile (480px+) styles go here */}@media only screen and (min-width: 768px) { /* Tablets/netbooks (768px+) styles go here */}@media only screen and (min-width: 1024px) { /* Desktops (1024px+) styles go here */} TotanTHEMES /*URL:http://titanthemes.com/*//* Smaller than standard 960 (devices and browsers) */@media only screen and (max-width: 959px) {}/* Tablet Portrait size to standard 960 (devices and browsers) */@media only screen and (min-width: 768px) and (max-width: 989px) {}/* All Mobile Sizes (devices and browser) */@media only screen and (max-width: 767px) {}/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */@media only screen and (min-width: 480px) and (max-width: 767px) {}/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */@media only screen and (max-width: 479px) {} Responsive Grid System /*URL:http://responsive.gs/*/ @media (max-width: 480px) {} @media (min-width: 480px) and (max-width: 768px) {} @media (min-width: 768px) {} @media (min-width: 1024px) {} @media (min-width: 1200px) {} 本文搜集的是Media Queries在各种设备下的代码片段,希望这些片段能帮大家更好的理解Responsive断点的设置。如果大家有更好的方案,希望能在评论中分享。前提设置body的字体为100%。其具有一个简单的计算公式:100% = 16px = 1em = 14pt

Photoshop制作糖果饭盒包装盒设计过程,附简单的分解图
因为包装特殊,是高透明的饭盒。而且不是通版找不到合适的样机,只能自己做一个。附上简单的算是分解图,第一次做这种类型,做得有点不好。可以互相交流。个人习惯PS所以直接使用PS进行绘制。感觉AI或者其他工具会更好最终效果刚开始测量了盒子的宽高根据盒子的形状做了调整,用尺子量了突出多少,在多少厘米开始弯曲。尽量规范让产品不假功底不好,就先做了简单的明暗和贴上了标签纸。添加突出部分,这里的位置都是有经过测量的。