June 23rd, 2009
Few days ago we made a new set of product pictures, just for portfolio.
Here you can see them: http://www.flickr.com/photos/agprime/tags/handwatch/
There was some Photoshop involved, to desaturate, and to correct a bit the contrast. Please feel free to comment.
Watch
Tags: foto , photography , product , studio Posted in Design , Photo | No Comments »
January 26th, 2009
We just created a Flickr accound where you can find all our photography work
http://www.flickr.com/photos/agprime
Tags: News , Photo Posted in Design , News , Photo | No Comments »
January 11th, 2009
Hello!
I am using quite often this script, it’s a very simple on but helpful becouse I designed it to be standard.
Well the images used should be in the folowing format: <name>.<extension> and <name>_over.<extension>
And the script is the folowing:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
< script type= "text/javascript" >
function over( obj)
{
var length= obj.src .length ;
var index_ext= 0 ;
while ( obj.src .indexOf ( '.' , index_ext+ 1 ) !=- 1 )
{
index_ext= obj.src .indexOf ( '.' , index_ext+ 1 )
}
var extension= obj.src .substring ( index_ext , length) ;
obj.src = ( obj.src .substring ( 0 , index_ext) + "_over" + extension) ;
}
function out( obj)
{
var length= obj.src .length ;
var index_ext= 0 ;
while ( obj.src .indexOf ( '.' , index_ext+ 1 ) !=- 1 )
{
index_ext= obj.src .indexOf ( '.' , index_ext+ 1 )
}
var extension= obj.src .substring ( index_ext , length) ;
var idx_ov= 0 ;
obj.src = ( obj.src .substring ( 0 , index_ext- 5 ) + extension) ;
}
</ script>
And the usage is as folows:
<img onmouseover = "over(this)" onmouseout = "out(this)" src = "buton.jpg" alt = "" / >
And here is an example:
Tags: javascript , Web development Posted in Design , Web development | No Comments »
December 16th, 2008
E o chestie des utilizata, dar am facut un mititiel standard pe care il voi folosi si eu in continuare; pentru ca de fiecare data faceam tot cate o alta varianta a acestui script. Cateva secunde, dar e bine sa le economisesti
Uite aici despre ce e vorba:
function toggle_content( event, obj, default_val) {
if ( event.type == "focus" ) {
if ( obj.value == default_val) {
obj.value = "" ;
}
} else
if ( event.type == "blur" ) {
if ( obj.value == "" ) {
obj.value = default_val;
}
}
}
Ok. si cum se apeleaza:
<input name="field" type="text" onfocus="toggle_content(event, this, 'cauta...')" onblur="toggle_content(event, this, 'cauta...')" value="cauta..." />
puteti vedea si un exemplu:
Tags: javascript , Web development Posted in Design , Web development | No Comments »
September 26th, 2008
Tags: Design , Photo Posted in Design , Photo | No Comments »