Minggu, 21 Februari 2021

Desain Grafis 2 - Pertemuan 7 - Ilustrasi, Warna & Teks/Tipografi

Ilustrasi, Warna & Teks/Tipografi  

 

Metode pembuatan gambar pada Desain Grafis bisa terbagi dari 2 : 

1. Manual/Hand Drawing/Gambar Tangan. Dengan menggunakan alat seperti pensil, airbrush, kuas, cat, spidol dll. Cocok untuk pembuatan konsep, sketsa, ide, karikatur, komik, lukisan dll. Untuk memindahkan ke format digital perlu alat seperti Scanner atau Foto Digital.

contoh sketsa :



2. Digital. Menggunakan komputer secara vector (CorelDraw) atau bitmap (Adobe Photoshop), camera atau gadget untuk foto. Format vector yang terdiri dari koordinat-koordinat, cocok untuk pembuatan logo dan gambar line-art. Format bitmap terdiri dari pixel-pixel, cocok untuk foto.

Contoh Format vector :




Contoh Format Bitmap :




Warna 

Setiap warna mempunyai karakteristik sendiri. Dengan warna kita dapat mengkomunikasikan desain kita kepada audience secara efektif. Secara fisika warna dapat dipengaruhi oleh tekstur/material dan cahaya. Sehingga bisa tampak berbeda sebagai berikut :




Dengan menggunakan 3 warna dasar primer Cyan, Magenta, Yellow dapat dibuat variasi warna yang sangat banyak 


Teks / tipografi

Tipografi merupakan seni memilih dan menata huruf pada ruang untuk menciptakan kesan khusus, sehingga pembaca dapat membaca semaksimal mungkin.

Perkebangan tipografi mengalami perkembangan dari cara manual / dengan tangan (hand drawn) hingga menggunakan komputer. Dengan menggunakan komputer penggunaan tipografi menjadi lebih mudah dan lebih cepat dengan pilihan huruf yang variatif. Meski begitu dalam pemilihan huruf /font harus diperhatikan karakter produk yang akan ditonjolkan dan juga karakter segment pasarnya.

contoh tipografi :



 

Jenis-jenis font 

meski jenis font begitu banyak tetapi tetap dalam kategori sebagai berikut :

1. Huruf tanpa kait (sans serif) : tidak memiliki kait/hook, hanya batang dan tangkainya saja contoh : Arial, Tahoma 

2. Huruf Berkait (serif) : memiliki kait / hook pada ujungnya, contoh : Times New Roman, Garamond 

3. Huruf tulis (Script) : setiap hurufnya saling terkait seperti tulisan tangan contoh : Brushcscript, Mistral, Shelley Allegro dll

4. Huruf Dekoratif : setiap huruf dibuat secara detail, kompleks dan rumit. contoh : AugsburgerInitial dll

5. Huruf Monospace : bentuknya bisa sama seperti huruf Sans Serif atau Serif, tapi jarak dan ruang hurufnya sama contoh : Courier, Monotype Cursive, OCR dll

Dalam sebuah desain perlu penekanan dan urutan / hirarki dalam pembacaan teks. Tidak semua teks harus menonjol, sehingga dalam teks ada yang disebut Judul (headline), subjudul (subhead), dan sinopsis (bodytext) dll.         

     

Materi CSS - Pertemuan 7 - CSS Border

CSS Border

The CSS border properties allow you to specify the style, width, and color of an element's border.

CSS Border Style

The border-style property specifies what kind of border to display.

The following values are allowed:

  • dotted - Defines a dotted border
  • dashed - Defines a dashed border
  • solid - Defines a solid border
  • double - Defines a double border
  • groove - Defines a 3D grooved border. The effect depends on the border-color value
  • ridge - Defines a 3D ridged border. The effect depends on the border-color value
  • inset - Defines a 3D inset border. The effect depends on the border-color value
  • outset - Defines a 3D outset border. The effect depends on the border-color value
  • none - Defines no border
  • hidden - Defines a hidden border

The border-style property can have from one to four values (for the top border, right border, bottom border, and the left border). 

Example

<!DOCTYPE html>
<html>
<head>
<style>
p.dotted {border-style: dotted;}
p.dashed {border-style: dashed;}
p.solid {border-style: solid;}
p.double {border-style: double;}
p.groove {border-style: groove;}
p.ridge {border-style: ridge;}
p.inset {border-style: inset;}
p.outset {border-style: outset;}
p.none {border-style: none;}
p.hidden {border-style: hidden;}
p.mix {border-style: dotted dashed solid double;}
</style>
</head>
<body>

<h2>The border-style Property</h2>
<p>This property specifies what kind of border to display:</p>

<p class="dotted">A dotted border.</p>
<p class="dashed">A dashed border.</p>
<p class="solid">A solid border.</p>
<p class="double">A double border.</p>
<p class="groove">A groove border.</p>
<p class="ridge">A ridge border.</p>
<p class="inset">An inset border.</p>
<p class="outset">An outset border.</p>
<p class="none">No border.</p>
<p class="hidden">A hidden border.</p>
<p class="mix">A mixed border.</p>

</body>
</html>


CSS Border Width

The border-width property specifies the width of the four borders.

The width can be set as a specific size (in px, pt, cm, em, etc) or by using one of the three pre-defined values: thin, medium, or thick:

Example

<!DOCTYPE html>
<html>
<head>
<style>
p.one {
  border-style: solid;
  border-width: 5px;
}

p.two {
  border-style: solid;
  border-width: medium;
}

p.three {
  border-style: dotted;
  border-width: 2px;
}

p.four {
  border-style: dotted;
  border-width: thick;
}

p.five {
  border-style: double;
  border-width: 15px;
}

p.six {
  border-style: double;
  border-width: thick;
}
</style>
</head>
<body>

<h2>The border-width Property</h2>
<p>This property specifies the width of the four borders:</p>

<p class="one">Some text.</p>
<p class="two">Some text.</p>
<p class="three">Some text.</p>
<p class="four">Some text.</p>
<p class="five">Some text.</p>
<p class="six">Some text.</p>

<p><b>Note:</b> The "border-width" property does not work if it is used alone. 
Always specify the "border-style" property to set the borders first.</p>

</body>
</html>


CSS Border Color

The border-color property is used to set the color of the four borders.

The color can be set by:

  • name - specify a color name, like "red"
  • HEX - specify a HEX value, like "#ff0000"
  • RGB - specify a RGB value, like "rgb(255,0,0)"
  • HSL - specify a HSL value, like "hsl(0, 100%, 50%)"
  • transparent

Example

<!DOCTYPE html>
<html>
<head>
<style>
p.one {
  border-style: solid;
  border-color: red;
}

p.two {
  border-style: solid;
  border-color: green;

p.three {
  border-style: dotted;
  border-color: blue;
</style>
</head>
<body>

<h2>The border-color Property</h2>
<p>This property specifies the color of the four borders:</p>

<p class="one">A solid red border</p>
<p class="two">A solid green border</p>
<p class="three">A dotted blue border</p>

<p><b>Note:</b> The "border-color" property does not work if it is used alone. Use the "border-style" property to set the borders first.</p>

</body>
</html>


CSS Border - Individual Sides

From the examples on the previous pages, you have seen that it is possible to specify a different border for each side.

In CSS, there are also properties for specifying each of the borders (top, right, bottom, and left):

Example

<!DOCTYPE html>
<html>
<head>
<style>
p {
  border-top-style: dotted;
  border-right-style: solid;
  border-bottom-style: dotted;
  border-left-style: solid;
}
</style>
</head>
<body>

<h2>Individual Border Sides</h2>
<p>2 different border styles.</p>

</body>
</html>


So, here is how it works:

If the border-style property has four values:

  • border-style: dotted solid double dashed;
    • top border is dotted
    • right border is solid
    • bottom border is double
    • left border is dashed

If the border-style property has three values:

  • border-style: dotted solid double;
    • top border is dotted
    • right and left borders are solid
    • bottom border is double

If the border-style property has two values:

  • border-style: dotted solid;
    • top and bottom borders are dotted
    • right and left borders are solid

If the border-style property has one value:

  • border-style: dotted;
    • all four borders are dotted

Example

<!DOCTYPE html>
<html>
<head>
<style>
body {
  text-align: center;
}
/* Four values */
p.four {
  border-style: dotted solid double dashed;
}

/* Three values */
p.three {
  border-style: dotted solid double;
}

/* Two values */
p.two {
  border-style: dotted solid;
}

/* One value */
p.one {
  border-style: dotted;
}
</style>
</head>
<body>

<h2>Individual Border Sides</h2>
<p class="four">4 different border styles.</p>
<p class="three">3 different border styles.</p>
<p class="two">2 different border styles.</p>
<p class="one">1 border style.</p>

</body>
</html>


CSS Border - Shorthand Property

The border property is a shorthand property for the following individual border properties:

  • border-width
  • border-style (required)
  • border-color

Example

<!DOCTYPE html>
<html>
<head>
<style>
p {
  border: 5px solid red;
}
</style>
</head>
<body>

<h2>The border Property</h2>

<p>This property is a shorthand property for border-width, border-style, and border-color.</p>

</body>
</html>


You can also specify all the individual border properties for just one side:

Left Border

<!DOCTYPE html>
<html>
<head>
<style>
p {
  border-left: 6px solid red;
  background-color: lightgrey;
}
</style>
</head>
<body>

<h2>The border-left Property</h2>
<p>This property is a shorthand property for border-left-width, border-left-style, and border-left-color.</p>

</body>
</html>

CSS Rounded Borders

The border-radius property is used to add rounded borders to an element:

<!DOCTYPE html>

<html>

<head>

<style>

p.normal {

  border: 2px solid red;

}


p.round1 {

  border: 2px solid red;

  border-radius: 5px;

}


p.round2 {

  border: 2px solid red;

  border-radius: 8px;

}


p.round3 {

  border: 2px solid red;

  border-radius: 12px;

}

</style>

</head>

<body>


<h2>The border-radius Property</h2>

<p>This property is used to add rounded borders to an element:</p>


<p class="normal">Normal border</p>

<p class="round1">Round border</p>

<p class="round2">Rounder border</p>

<p class="round3">Roundest border</p>


</body>

</html>




Minggu, 14 Februari 2021

Materi CSS - Pertemuan 6 - CSS Backgrounds

CSS Backgrounds

The CSS background properties are used to define the background effects for elements.

In these chapters, you will learn about the following CSS background properties:

  • background-color
  • background-image
  • background-repeat
  • background-attachment
  • background-position

CSS Backgrounds-color

The background-color property specifies the background color of an element.

Example

<!DOCTYPE html>
<html>
<head>
<style>
body {
  background-color: lightblue;
}
</style>
</head>
<body>

<h1>Hello World!</h1>

<p>This page has a light blue background color!</p>

</body>
</html>

With CSS, a color is most often specified by:

  • a valid color name - like "red"
  • a HEX value - like "#ff0000"
  • an RGB value - like "rgb(255,0,0)"

Look at CSS Color Values for a complete list of possible color values.

 

Other Elements

You can set the background color for any HTML elements:

Example

Here, the <h1>, <p>, and <div> elements will have different background colors: 

<!DOCTYPE html>
<html>
<head>
<style>
h1 {
  background-color: green;
}

div {
  background-color: lightblue;
}

p {
  background-color: yellow;
}
</style>
</head>
<body>

<h1>CSS background-color example!</h1>
<div>
This is a text inside a div element.
<p>This paragraph has its own background color.</p>
We are still in the div element.
</div>

</body>
</html>

 

Opacity / Transparency

The opacity property specifies the opacity/transparency of an element. It can take a value from 0.0 - 1.0. The lower value, the more transparent:

<!DOCTYPE html>
<html>
<head>
<style>
div {
  background-color: green;
}

div.first {
  opacity: 0.1;
}

div.second {
  opacity: 0.3;
}

div.third {
  opacity: 0.6;
}
</style>
</head>
<body>

<h1>Transparent Box</h1>
<p>When using the opacity property to add transparency to the background of an element, all of its child elements become transparent as well. This can make the text inside a fully transparent element hard to read:</p>

<div class="first">
  <h1>opacity 0.1</h1>
</div>

<div class="second">
  <h1>opacity 0.3</h1>
</div>

<div class="third">
  <h1>opacity 0.6</h1>
</div>

<div>
  <h1>opacity 1 (default)</h1>
</div>

</body>
</html>
 

Transparency using RGBA

If you do not want to apply opacity to child elements, like in our example above, use RGBA color values. The following example sets the opacity for the background color and not the text:

 

<!DOCTYPE html>
<html>
<head>
<style>
div {
  background: rgb(0, 128, 0);
}

div.first {
  background: rgba(0, 128, 0, 0.1);
}

div.second {
  background: rgba(0, 128, 0, 0.3);
}

div.third {
  background: rgba(0, 128, 0, 0.6);
}
</style>
</head>
<body>

<h1>Transparent Box</h1>
<p>With opacity:</p>

<div style="opacity:0.1;">
  <h1>10% opacity</h1>
</div>

<div style="opacity:0.3;">
  <h1>30% opacity</h1>
</div>

<div style="opacity:0.6;">
  <h1>60% opacity</h1>
</div>

<div>
  <h1>opacity 1</h1>
</div>

<p>With RGBA color values:</p>
<div class="first">
  <h1>10% opacity</h1>
</div>

<div class="second">
  <h1>30% opacity</h1>
</div>

<div class="third">
  <h1>60% opacity</h1>
</div>

<div>
  <h1>default</h1>
</div>

<p>Notice how the text gets transparent as well as the background color when using the opacity property.</p>

</body>
</html>
 

CSS background-image

The background-image property specifies an image to use as the background of an element.

By default, the image is repeated so it covers the entire element.

<!DOCTYPE html>
<html>
<head>
<style>
body {
  background-image: url("paper.gif");
}
</style>
</head>
<body>

<h1>Hello World!</h1>

<p>This page has an image as the background!</p>

</body>
</html>

 

The background image can also be set for specific elements, like the <p> element:

<!DOCTYPE html>
<html>
<head>
<style>
p {
  background-image: url("paper.gif");
}
</style>
</head>
<body>

<h1>Hello World!</h1>

<p>This paragraph has an image as the background!</p>

</body>
</html>
 

 

 

 

 

 

 

Desain Grafis 2 - Pertemuan 6 - Bentuk

 Bentuk 

Bentuk disebut juga shape, dihasilkan dari garis-garis yang tersusun sedemikian rupa. bentuk ada yang berbentuk 2 dimensi (dwimatra) dan 3 dimensi (trimatra).

Setiap bentuk mempunyai arti tersendiri, tergantung budaya, geografis dll. Contoh : Segitiga bisa melambangkan konsep trinitas (ayah, ibu, anak) tapi di mesir bisa melambangkan simbol feminimitas (kewanitaan).

Bentuk dasar 2 dimensi dan variasinya 

pada dasarnya, bentuk dimulai dari segi 3 sampai segi tidak terhingga atau lingkaran. Dari bentuk dasar tersebut bisa dibuat pengembangan / kombinasi dan variasi yang lebih banyak lagi.



 

   


Kombinasi dari bentuk-bentuk dasar akan menghasilkan bentuk baru. Kemampuan untuk mengkombinasikan bentuk dapat dijumpai di CorelDraw yaitu Shaping (menu > Arrange > Shaping).

Contoh kombinasi bentuk :

Intersection 

 



 

 





Senin, 01 Februari 2021

Desain Grafis 2 - Pertemuan 4 - Kombinasi Garis

 1. B Kombinasi Garis 

Kombinasi garis Horizontal dan vertikal

Memberi kesan : Formal, kokoh, tegas

Kombinasi garis diagonal

Memberi kesan : konflik, perang, benci, larangan, contoh : rambu lalu lintas

 


Kombinasi garis Kurva 

Spiral : memberi kesan : kelahiran atau generasi penerus, hipnotis

Setengah lingkaran : memberi kesan kekokohan 

Gelombang : memberi kesan : mengalir, lembut, gemulai

 


 Kombinasi pada sudut 

Ini contoh sudut yang biasa digunakan desainer grafis. Pembuatan sudut tumpul tersedia di software CorelDraw atau Autocad.

 


 

Pengulangan 

Pengulangan akan menimbulkan irama. Sehingga kesannya bisa riang, tenang, malas, stabil. Zig zag memberi kesan bergairah, semangat, dinamika atau gerak cepat.

 


Pencerminan

Dengan pencerminan seakan tercipta bentuk baru yang tidak terbayang sebelumnya. Kesan yang ditimbulkan dari pencerminan : Formal & sederhana.

 


  

 Pancaran 

Memberi kesan : Adanya jarak, Kejauhan, Fokus, Meledak, Spontanitas, Memusat, Keleluasaan, tanpa batas dll.