2D, 3D, game, games, online game, game development, game engine, programming, OpenGL, Open AI, math, graphics, design, graphic, graphics, game development, game engine, programming, web development, web art, web graphic, arts, tutorial, tutorials,
joi, 15 august 2024
sâmbătă, 25 mai 2024
Codepen : TorusKnotGeometry - example .
luni, 22 aprilie 2024
Codepen : Rafa - nixie tubes example .
vineri, 12 aprilie 2024
CodePen: Mojo CSS simple example.
vineri, 12 ianuarie 2024
CodePen: CodePen Home WebGL Flower Pattern (Voronoi diagram GLSL)
miercuri, 14 iunie 2023
CodePen: Home MediaPipe - Hands
See the Pen MediaPipe - Hands by MediaPipe (@mediapipe) on CodePen.
sâmbătă, 1 aprilie 2023
Play Button - week's challenge .
Liquid button on CodePen Home by Waaark.
miercuri, 14 septembrie 2022
CodePen: Simple example with css-doodle web component.
sâmbătă, 5 martie 2022
CodePen: Google visualization with GeoChart.
See the Pen Untitled by Cătălin George Feștilă (@catafest) on CodePen.
marți, 4 ianuarie 2022
CodePen: The pantone color of the year 2022.
See the Pen the Pantone Color of year 2022 by Cătălin George Feștilă (@catafest) on CodePen.
miercuri, 24 noiembrie 2021
CodePen: ... challenges every time.
marți, 23 noiembrie 2021
CodePen: How can share sketchfab 3D models.
duminică, 1 august 2021
CodePen: RGB colors.
- create HTML tag div for each for iteration;
- create an id for each div tag;
- build an RGB color with red, green, and blue using a random function;
- read that id and used to set the color background of each div;
- print the RGB value for each color and set background color;
See the Pen by Cătălin George Feștilă (@catafest) on CodePen.
sâmbătă, 17 aprilie 2021
CodePen: Lottie for Web, Android, iOS, React Native, and Windows - 001.
See the Pen lottie-player html 001 by Cătălin George Feștilă (@catafest) on CodePen.
duminică, 4 aprilie 2021
CodePen: A simple progressbar with CSS.
animation: animate 6s ease-in-out infinite;
...
animation: animate 1s ease-in-out infinite;
Some changes to the CSS source code are not allowed because they have no effect on the end result or must be used in order to complete the base code and have the end result.
Another good example is flex:
display: flex;
On the parent element also changes how width and height work.
CSS codes defines have no effect on a flex container.
...
I can tell you that it is not very easy to change a project based on CSS, so the steps of designing and building a website are very important.
See the Pen CSS excample 001 by Cătălin George Feștilă (@catafest) on CodePen.
duminică, 24 noiembrie 2019
The wrld for custom maps.
If you don't want to build one using advanced programming language then you can use this website.
You can use this with an online map with Unity, JavaScript, iOS and Android.
You can also build your indoor map and visualize any building in 3D.
All of these features let you optimize building management, resources, and planning.
The map can have many features like time of day, weather and seasons and heat map.
The next example is an outdoor map of my location.
vineri, 15 noiembrie 2019
The neon effect with javascript P5 JavaScript library.
You can use by adding this link on your HTML area using the script tag:
https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/p5.min.js
You can use it like any JavaScript library.You have two functions: setup and a draw for setup and drawing.
function setup() {
createCanvas(window.innerWidth, window.innerHeight);
}
function draw() {
ellipse(50, 50, 80, 80);
}
Then you can fill these functions with any javascript code.You can see a neon effect with two bezier functions.
The example uses the mouse movement to change the bezier lines.
You can see many examples created by me at codepen website.
miercuri, 18 septembrie 2019
CodePen: Include shadertoy example in the webpage.
You need to get the iframe share from you shadertoy example.
Then use my example HTML and CSS from my codepen example.
You can remove the javascript code from example.
This javascript code is used to show the formula of sphere. I used my shadertoy example named Ray Marching - 001.
duminică, 2 septembrie 2018
New codepen example - modal window.
This is my example with a modal window created on codepen website.
The example is very simple.
The html5 source code is created with classes and id's.
The css file make all style for this tags.
The javascript use all of this to open the modal window, use click to close the window.
The Cancel and Add buttons not work with the java script.