Pages

Se afișează postările cu eticheta web development. Afișați toate postările
Se afișează postările cu eticheta web development. Afișați toate postările

sâmbătă, 9 martie 2024

News : Online tool for JavaScript and TypeScript

Using this online tool you can create a JavaScript/TypeScript project that runs natively on all your users' devices: web, android, iOS.
You can find more details and the documentation on the official page with the documentation.
An very old video example from 7 years ago, see the official youtube.
Here is a screenshot of this online tool I tested today:

vineri, 12 ianuarie 2024

The Ren'Py visual novel engine .

Ren'Py is a visual novel engine – used by thousands of creators from around the world – that helps you use words, images, and sounds to tell interactive stories that run on computers and mobile devices. These can be both visual novels and life simulation games. The easy to learn script language allows anyone to efficiently write large visual novels, while its Python scripting is enough for complex simulation games.
Ren'Py is free to use with commercial and non-commercial games and you can find on the official website.
This run's on Android 5.0+,HTML5/Web Assembly (Beta),Linux x86_64/Arm,Windows 7+,Mac OS X 10.10+ and iOS 11+.
This is last video tutorial from RenPy start tutorials but you can find more on web.

News : What’s New in Google Accessibility | Episode 4 | American Sign Language !

CodePen: CodePen Home WebGL Flower Pattern (Voronoi diagram GLSL)

You can find good web development with a great graphics on Ksenia Kondrashova codepen account.
See this example named: CodePen Home WebGL Flower Pattern (Voronoi diagram GLSL):

miercuri, 8 noiembrie 2023

New : An easy way to capture a screenshot of a full webpage ...

How to check your website format ...
You can use many tools, many of which are online.
This is an example of pikwy

duminică, 5 noiembrie 2023

News : Asm Blox: a Game Based on WebAssembly That No One Asked For ...

I will consider this post news because I have not seen that the open-source developer community that is active on the web come up with clear examples in WebAssembly even though it appeared more than 6 years ago.
The name suggests bringing assembly-like programming to the Web, where it will be executed client-side — by the website-user's computer via the user's web browser. See wikipedia for more ...

vineri, 15 septembrie 2023

Web : 3D effect with comics .

You can see this demo with 3D comics webpage at this webpage.
You can find more on this webpage.

luni, 4 septembrie 2023

Rokoko for animation.

Rokoko is a Danish brand of consumer motion capture and animation technology products.Empowering 3D digital creators with high quality sensor based motion capture systems for body, finger and face animations.
You can start with only two web cams and you have great result. See the official website.

luni, 21 august 2023

ThreeJS : Use ThreeJS into my vercel project - 001.

New changes to the old project named nextjsthreejs001, created in vercel, I added the threejs library, created a scene with a default cube object.

joi, 13 iulie 2023

ThreeJS : dissolve shader example.

This example with ThreeJS and shaders is created by Made with 🐪 by Faraz Shaikh, see more on the GitHub user.

luni, 10 iulie 2023

News : About my work and one of my websites.

I would like to bring to the attention of those who follow my activity on my websites and appreciate the inability to continue with one of the websites: free-tutorials.org. It is currently hosted on a free host, but I cannot import it 100%, which has led me not to complete it with new posts. The continuation of the activities there, considering the limited time, will be carried out on my blogs with the defined theme with which I started: Linux - Fedora, Graphics, Python, Pygame.
In the meantime, because the host is expensive and until now someone has helped me to host it on his server, it is possible to sell the domain: free-tutorials.org - I receive purchase offers at my personal Yahoo email address catafest@yahoo.com.
Minimum starting price 250 euros, because the domain is old from 2018.

duminică, 21 mai 2023

Beautiful web design with Windows 11 O.S.

Here's an innovative way to test Windows 11. This website uses a unique design to display the Windows 11 operating system interface. For more details, check out the links below:

miercuri, 26 aprilie 2023

Build a Mindblowing 3D Portfolio Website // Three.js Beginner’s Tutorial

The three.js library can be used very well to create good content in the website development area. You can see a good example from the Fireship youtube channel posted a year ago.

sâmbătă, 1 aprilie 2023

Play Button - week's challenge .

This is my proposal for this weeks challenge called Play Button. I could have done it better, but my time resource is limited...

Liquid button on CodePen Home by Waaark.

This is a good example with a button to use javascript to create a liquid effect. I studied a little and I can tell you that modifying the tag elements via javascript is quite tricky ...

duminică, 20 noiembrie 2022

Shadertoy: matrix rotation for uv.

Today I wrote a simple example in shadertoy about how to apply a rotation using rotation matrices with sin and cos for a uv, see wikipedia.
For uv I used already defined uv. I created a stripe using the modulo function to make rotation visible and completed the rotation with the iTime variable defined in shadertoy to rotate it continuously.
Here is the created source code:
void mainImage( out vec4 fragColor, in vec2 fragCoord )
{
    //set the uv to a proper size on the center of screen 
    vec2 uv = (fragCoord - 0.5 * iResolution.xy) / min(iResolution.x, iResolution.y);
    // set rotation angle value
    float rot = radians(0.0);
    // this set rotation by time and 
    rot = iTime;a
    // algebra formula for rotation by matrix , https://en.wikipedia.org/wiki/Rotation_matrix
    mat2 m = mat2(cos(rot), -sin(rot), sin(rot), cos(rot));
    // rotation of uv with matrix algebra formula where is set the rotation angle 
    uv = m* uv;
    // define float by function module from 1.0 and uv.x - uv.y
    float d = mod(uv.x - uv.y, 1.0);
    // color for fragColor is value of fload d by module function
    vec4 col = vec4(vec3(d), 1.0);
    fragColor = vec4(col);
}
Here is an example share from my shadertoy account.

sâmbătă, 20 august 2022

The threejs project by playdoh.

This is a beautiful website project named lagaleriedesespeces build with the Three.js library.
You can see it on this webpage.

sâmbătă, 13 august 2022

Spring Flowers WebGL Demo

A beautiful demo with WebGL.
The source code can be found on this GitHub repository.