-
Notifications
You must be signed in to change notification settings - Fork 9
Alice #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Alice #2
Conversation
vladutcornel
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Arată destul de bine.
Câteva chestii pe care le-am remarcat mai sus nu sunt rezolvate.
| image</span> | ||
| </a> | ||
| </li> | ||
| <li class="list"><a href="contact.html" class="menu-btn contact"><span class="material-symbols-outlined contact-icon"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aranjează mai frumos elementele în cod
| context.moveTo(x1, y1); | ||
| context.lineTo(x2, y2); | ||
| context.stroke(); | ||
| context.closePath(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesantă ideea de a folosi canvas. Ai înțeles tot ce ai făcut aici?
|
vscode-ul mi le pune asa, nu stiu de ce ca eu le-am mai rearanjat de cateva
ori, iar cu functia drawline,a m inteles ideea dar nu prea am inteles toti
pasii..mi s-a parut putin dificila functia sau nu m-am mai lovit eu de ceva
aseamanator.
În mie., 14 sept. 2022 la 22:39, A Cornel ***@***.***> a
scris:
… ***@***.**** commented on this pull request.
------------------------------
In src/about.html
<#2 (comment)>
:
> + <a href="#" class="logo-link"><img src="logo/Artă nouă și veche-logo.png" alt="logo Artă nouă și veche" class="logo-img"/></a>
+ <nav class="nav-bar small">
+ <ul class="line-icons">
+ <li class="list"><a href="index.html" class="menu-btn home"><span class="material-symbols-outlined home-icon">
+ home</span>
+ </a>
+ </li>
+ <li class="list"><a href="about.html" class="menu-btn about"><span class="material-symbols-outlined about-icon">
+ groups</span>
+ </a>
+ </li>
+ <li class="list"><a href="gallery.html" class="menu-btn gallery"><span class="material-symbols-outlined gallery-icon">
+ image</span>
+ </a>
+ </li>
+ <li class="list"><a href="contact.html" class="menu-btn contact"><span class="material-symbols-outlined contact-icon">
Aranjează mai frumos elementele în cod
------------------------------
In src/about.js
<#2 (comment)>
:
> + if (isDrawing) {
+ drawLine(context, x, y, e.offsetX, e.offsetY);
+ x = 0;
+ y = 0;
+ isDrawing = false;
+ }
+});
+
+function drawLine(context, x1, y1, x2, y2) {
+ context.beginPath();
+ context.strokeStyle = "black";
+ context.lineWidth = 1;
+ context.moveTo(x1, y1);
+ context.lineTo(x2, y2);
+ context.stroke();
+ context.closePath();
Interesantă ideea de a folosi canvas. Ai înțeles tot ce ai făcut aici?
—
Reply to this email directly, view it on GitHub
<#2 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AW3W33IUSWKNNCSCIRNUP73V6ISVXANCNFSM54IMU2FA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
|
No description provided.