Web development , php , ajax , symfony, framework, zend
This blog delivers stylish and dynamic news for designers and web-developers on all subjects of design, ranging from: CSS, Ajax, Javascript, web design, graphics, typography, advertising & much more. Our goal is to help you communicate effectively on the web with an engaging website or functional interface.
6 Responses to 35 Exclusive And High Quality PSD Photoshop Resource Sites
Alfredo A
February 2nd, 2010 at 7:13 am
I recommend you learn old school, this will help with other files and other programs in the future:
- Go to My Computer, then Tools menu, Folder Options…
- Open the File Types tab.
There is a list of ALL extensions with the associated software that opens each one.
Just look for that extension (you can click on the list then type the first letter on the keyboard for a quick jump) and then click "Change" and select the software you would like to use.
cjconnor24
March 14th, 2010 at 3:43 pm
Hmm, that doesn't make very good england?
You should be think about vectors? Freevectors.net
cathieee<3
March 21st, 2010 at 1:46 am
If you want to make a layout site on myspace, just click register. But first, you need to know how to make layouts and stuff. You can also ask for help from other layout sites (on myspace) to help you. I have one with my friend and if you add us, we can make you a whore/support code and we can help you get started. Our link is in my sources.
Zachary B
March 22nd, 2010 at 2:24 pm
Dreamweaver is a very useful program when you know how to use it. To add links to images, first make sure you have your properties open(Ctrl + F3) then click the image you would like to link and go down into your properties panel and either copy the URL into the LINK box or if you are linking to a page in your own site, click the folder icon to bring up your root folder. You can then double click the HTML page you would like to link to.
I hope you are using the save as HTML option in photoshop. This will export an HTML page along with saving all your sliced images into a folder. Makes things a little bit easier for you. You want to be careful how you slice your site. If you have too many slices or too few of slices, then your website will take longer to load. So pay attention to that.
I hope this was helpful. If you visit my portfolio you will be able to take a look at the code and see what I built it. I also used dreamweaver and photoshop. http://www.zacharyburghardt.com. also shoot me an email and I will send you some quick and easy tips on how to optimize your website for the search engine.
gildward
March 23rd, 2010 at 3:58 pm
The Gradient color uses the following methods in the class java.awt.*:
Graphics2D:
This is the class which extends from the Graphics class i.e. used to control the geometry according to the coordinate. It is also used to manage texts.
Gradient():
This is a constructor of Gradient class. It is used to create a gradient color with the help of getGradient() method.
GradientPaint():
This is a constructor of Gradient class. It used to fill the gradient color in the shapes.
Syntax for GradientPaint:
GradientPaint(startX, startY, startColor, endX, endY, endColor, true)
Below is an example of a rectangle using four colors:
import javax.swing.*;
import java.awt.*;
public class GradientColor{
public static void main(String[] args) {
GradientColor gd = new GradientColor();
}
public GradientColor(){
JFrame frame = new JFrame("Drawing with a Gradient Color");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(new MyComponent());
frame.setSize(400,400);
frame.setVisible(true);
}
public class MyComponent extends JComponent {
public void paint(Graphics g){
Graphics2D g2d = (Graphics2D)g;
Color s1 = Color.red;
Color e = Color.green;
GradientPaint gradient = new GradientPaint(10,10,s1,30,30,e,true);
g2d.setPaint(gradient);
g2d.drawRect(100,100,200,120);
Color s2 = Color.yellow;
Color e1 = Color.pink;
GradientPaint gradient1 = new GradientPaint(10,10,s2,30,30,e1,true);
g2d.setPaint(gradient1);
g2d.fillRect(99,99,199,119);
}
}
}
Michelle
March 24th, 2010 at 11:43 pm
They'd have to earn a living somehow
My guess is that the money comes from advertizers that wish to appeal the web-designers audience, such as stock photos sites (saw an Istockphoto add over there), flash components sites maybe some Google's Adsence, affiliates etc