12 Μαΐου 2025

 Alpha mask and keying

Alpha swaps (μικραίνω εικόνα ή video και βάζω νέες στρώσεις από κάτω)

Rectangular alpha mask (κόβω γενικά)

Κίνηση

Fade in

Fade out

Freeze

Blur and sharpen

Average blur (έχει χ και y size)

Box blur (οριζόντια και κάθετα)

Gaussian blur

Square blur

Color and image correction

Brightness (λαμπρότητα)

BwOr (μαυρόασπρο)

Color balance (κλίμακες RGB)

Channel mixer (κλίμακες RGB)

Color correct (κλίμακες RGB)

Color levels (κλίμακες RGB)

Colorize (κλίμακες RGB)

Contrast (αντίθεση)

Gray scale (μαυρόασπρο)

Levels (κλίμακες RGB)

Luminance (μαυρόασπρο)

Monochrome (μαυρόασπρο)

RGB Adjustment (κλίμακες RGB)

SOP/Sat (κλίμακες RGB)

Video Equalizer (πολυεργαλείο)

Deprecated

Blur (θόλωση)

Delogo deprecated  Logo width προς τα δεξιά και σβήνει

Grain deprecated (Θόρυβος αντίθεση λαμπρότητα)

Wave deprecated (κύμματα)

Stylize

Charcoal (μετατρέπει σε σκίτσο)

Pixelize (Για όλο το κλιπ)

Transform distort and Perpective

Corners

Crop and padding (στρογγυλεύω τις γωνίες πειράζοντας την ακτίνα)

Crop scale and tit (να δοκιμάσω τα πάντα)

Flip Horizontally (οριζόντια αναστροφή)

Flip vertically και Flipo (Αναποδογύρισμα)

Lens correction Τρίτη επιλογή (Quadratic) για στρογγύλεμα

Rotate and share

Transform (περιστροφή)




01 Μαΐου 2025

ΚΟΥΜΠΙΑ

 <!DOCTYPE html>

<html>

<head>

<style>

.button {

  background-color: #04AA6D; /* Green */

  border: none;

  color: white;

  padding: 15px 32px;

  text-align: center;

  text-decoration: none;

  display: inline-block;

  font-size: 16px;

  margin: 4px 2px;

  cursor: pointer;

}


.button2 {background-color: #008CBA;} /* Blue */

.button3 {background-color: #f44336;} /* Red */ 

.button4 {background-color: #e7e7e7; color: black;} /* Gray */ 

.button5 {background-color: #555555;} /* Black */

</style>

</head>

<body>


<h2>Button Colors</h2>


<p>Change the background color of a button with the background-color property:</p>


<button class="button">Green</button>

<button class="button button2">Blue</button>

<button class="button button3">Red</button>

<button class="button button4">Gray</button>

<button class="button button5">Black</button>


</body>

</html>



4o ΜΑΘΗΜΑ ΜΕΡΙΚΕΣ ΕΝΤΟΛΕΣ CSS

 body {

  background-color: lightblue;

}


h1 {

  text-align: center;

  color: navy;

  margin-left: 20px;

}


p {

  font-family: verdana;

  font-size: 20px;

  color: red;

  text-align: center;

}


External CSS

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>
</html>

ΑΡΧΕΙΟ CSS

body {
  background-color: lightblue;
}

h1 {
  color: navy;
  margin-left: 20px;
}

Internal CSS

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

h1 {
  color: maroon;
  margin-left: 40px;
}
</style>
</head>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>
</html>


Inline CSS

<!DOCTYPE html>
<html>
<body>

<h1 style="color:blue;text-align:center;">This is a heading</h1>
<p style="color:red;">This is a paragraph.</p>

</body>
</html>

3ο ΜΑΘΗΜΑ

DIVS AND FRAMES  

4o ΜΑΘΗΜΑ  HTML