• Kiến thức
  • Network
  • Security
  • Software
  • Thủ thuật
  • Tin học văn phòng
  • Tin tức
  • Mail ảo tạm thời miễn phí
  • Tools tra cứu thông tin
AnonyViet
  • Tin tức
  • Network
    • Mạng cơ bản
    • Hyper-V
    • Linux
    • Windown Server 2012
  • Security
    • Basic Hacking
    • Deface
    • Kali Linux / Parrot
    • SQL Injection
  • Thủ thuật
    • Khóa Học Miễn Phí
    • Code
    • Mẹo Vặt Máy Tính
    • Facebook
    • Windows 7/8/10/11
    • Đồ Họa
    • Video
  • Software
    • Phần mềm máy tính
    • Phần mềm điện thoại
  • Tin học văn phòng
  • Kiến thức
  • MMO
    • Advertisers – Publishers
    • Affiliate Program
    • Kiếm tiền bằng điện thoại
    • Pay Per Click – PPC
No Result
View All Result
  • Tin tức
  • Network
    • Mạng cơ bản
    • Hyper-V
    • Linux
    • Windown Server 2012
  • Security
    • Basic Hacking
    • Deface
    • Kali Linux / Parrot
    • SQL Injection
  • Thủ thuật
    • Khóa Học Miễn Phí
    • Code
    • Mẹo Vặt Máy Tính
    • Facebook
    • Windows 7/8/10/11
    • Đồ Họa
    • Video
  • Software
    • Phần mềm máy tính
    • Phần mềm điện thoại
  • Tin học văn phòng
  • Kiến thức
  • MMO
    • Advertisers – Publishers
    • Affiliate Program
    • Kiếm tiền bằng điện thoại
    • Pay Per Click – PPC
No Result
View All Result
AnonyViet
No Result
View All Result

Share code tạo hiệu ứng ma trận 3D cực đẹp cho website

Lmint by Lmint
in Code
A A
5

Mục lục bài viết

  1. Giới thiệu về bộ source code hiệu ứng ma trận 3D
    1. Hướng dẫn sử dụng

AnonyViet từng share một bộ source code ma trận bằng Canvas rất đẹp và được phản hồi rất tốt. Hôm nay, mình sẽ chia sẽ thêm bộ Source code ma trận 3D được viết bằng HTML – CSS và JS. Hiệu ứng đổ chữ theo chiều dọc trên nền đen giống trong các bộ phim hacker.

Tham gia kênh Telegram của AnonyViet 👉 Link 👈

Hiệu ứng này tạo nên một phong cách rất lạnh lùng giống các Hacker trong phim. Bạn có thể sử dụng bộ source code này để học thêm kiến thức hoặc khoe bạn bè cho vui. Với hiệu ứng có ma trận chiều sâu, làm cho màn hình trở nên thật huyền bí. Bây giờ, mình sẽ giới thiệu bộ Source code và cách sử dụng cho bạn xem.

Giới thiệu về bộ source code hiệu ứng ma trận 3D

Share code tạo hiệu ứng ma trận 3D cực đẹp cho website 6

do các dòng chữ đang rơi nên khi mình chụp nó hơi bị lem lem, nhưng thực tế thì hiệu ứng này rất đẹp.

Demo Ma Trận 3D bằng HTML

Hướng dẫn sử dụng

Tạo một file index.html có nội dung code như sau:

<!DOCTYPE html>
<html lang="en" >
   <head>
      <meta charset="UTF-8">
      <title>Matrix code rain</title>
      <link rel="stylesheet" href="css/style.css">
   </head>
   <body>
      <html>
         <body>
            <div id="info">
               <p><strong>Matrix code rain</strong></p>
               <p>Experiment write up <a href="http://neilcarpenter.com/labs/matrix-rain" target="_blank">here</a>.</p>
			
               <a href="#" class="toggle-info" id="open">Show info</a>
               <a href="#" class="toggle-info" id="close">Hide info</a>			
            </div>
            <canvas id="canvas"></canvas>
         </body>
         <a href="https://github.com/neilcarpenter/Matrix-code-rain" id="ribbon" target="_blank"><img style="position: absolute; top: 0; right: 0; border: 0; z-index: 50;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
      </html>
      <script src='https://neilcarpenter.com/demos/canvas/matrix/stats.min.js'></script>
      <script  src="js/index.js"></script>
   </body>
</html>

Tiếp theo tạo một thư mục tên JS và trong thư mục đó tạo thêm một file index.js có nội dung như sau:

(function() {
var lastTime = 0;
var vendors = ['ms', 'moz', 'webkit', 'o'];
for(var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {
window.requestAnimationFrame = window[vendors[x]+'RequestAnimationFrame'];
window.cancelAnimationFrame = window[vendors[x]+'CancelAnimationFrame']
|| window[vendors[x]+'CancelRequestAnimationFrame'];
}
if (!window.requestAnimationFrame)
window.requestAnimationFrame = function(callback, element) {
var currTime = new Date().getTime();
var timeToCall = Math.max(0, 16 - (currTime - lastTime));
var id = window.setTimeout(function() { callback(currTime + timeToCall); },
timeToCall);
lastTime = currTime + timeToCall;
return id;
};
if (!window.cancelAnimationFrame)
window.cancelAnimationFrame = function(id) {
clearTimeout(id);
};
}());
// stats
var stats = new Stats();
stats.setMode(0);
stats.domElement.style.position = 'absolute';
stats.domElement.style.left = '0px';
stats.domElement.style.top = '0px';
document.body.appendChild( stats.domElement );
var M = {
settings: {
COL_WIDTH: 20,
COL_HEIGHT: 25,
VELOCITY_PARAMS: {
min: 4,
max: 8
},
CODE_LENGTH_PARAMS: {
min: 20,
max: 40
}
},
animation: null,
c: null,
ctx: null,
lineC: null,
ctx2: null,
WIDTH: window.innerWidth,
HEIGHT: window.innerHeight,
COLUMNS: null,
canvii: [],
// font from here https://www.dafont.com/matrix-code-nfi.font
font: '30px matrix-code',
letters: ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '$', '+', '-', '*', '/', '=', '%', '"', '\'', '#', '&', '_', '(', ')', ',', '.', ';', ':', '?', '!', '\\', '|', '{', '}', '<', '>', '[', ']', '^', '~'],
codes: [],
createCodeLoop: null,
codesCounter: 0,
init: function () {
M.c = document.getElementById( 'canvas' );
M.ctx = M.c.getContext( '2d' );
M.c.width = M.WIDTH;
M.c.height = M.HEIGHT;
M.ctx.shadowBlur = 0;
M.ctx.fillStyle = '#000';
M.ctx.fillRect(0, 0, M.WIDTH, M.HEIGHT);
M.ctx.font = M.font;
M.COLUMNS = Math.ceil(M.WIDTH / M.settings.COL_WIDTH);
for (var i = 0; i < M.COLUMNS; i++) {
M.codes[i] = [];
M.codes[i][0] = {
'open': true,
'position': {'x': 0, 'y': 0},
'strength': 0
};
}
M.loop();
M.createLines();
M.createCode();
// not doing this, kills CPU
// M.swapCharacters();
window.onresize = function () {
window.cancelAnimationFrame(M.animation);
M.animation = null;
M.ctx.clearRect(0, 0, M.WIDTH, M.HEIGHT);
M.codesCounter = 0;
M.ctx2.clearRect(0, 0, M.WIDTH, M.HEIGHT);
M.WIDTH = window.innerWidth;
M.HEIGHT = window.innerHeight;
M.init();
};
},
loop: function () {
M.animation = requestAnimationFrame( function(){ M.loop(); } );
M.draw();
stats.update();
},
// this used to be used straight after createCode, without using createCanvii - it allowed
// the characters within the code streams to be easily changable, but caused huge perf issues
// OLDdraw: function() {
// 	var codesLen = M.codes.length;
// 	var codeLen;
// 	var x;
// 	var y;
// 	var text;
// 	var velocity;
// 	var columnIndex;
// 	var strength;
// 	var fadeStrength;
// 	M.ctx.shadowColor = 'rgba(0, 0, 0, 0.5)';
// 	M.ctx.fillStyle = 'rgba(0, 0, 0, 0.5)';
// 	M.ctx.fillRect(0, 0, M.WIDTH, M.HEIGHT);
// 	M.ctx.globalCompositeOperation = 'source-over';
// 	for (var i = 0; i < codesLen; i++) {
// 		velocity = M.codes[i][0].velocity;
// 		M.codes[i][0].position.y += velocity;
// 		y = M.codes[i][0].position.y;
// 		x = M.codes[i][0].position.x;
// 		codeLength = M.codes[i].length;
// 		strength = M.codes[i][0].strength;
// 		for (var j = 1; j < codeLength; j++) {
// 			text = M.codes[i][j];
// 			if (j < 5) {
// 				M.ctx.shadowColor = 'hsl(104, 79%, 74%)';
// 				M.ctx.shadowOffsetX = 0;
// 				M.ctx.shadowOffsetY = 0;
// 				M.ctx.shadowBlur = 10;
// 				M.ctx.fillStyle = 'hsla(104, 79%, ' + (100 - (j * 5)) + '%, ' + strength + ')';
// 			} else if (j > (codeLength - 4)) {
// 				fadeStrength = j / codeLength;
// 				fadeStrength = 1 - fadeStrength;
// 				M.ctx.shadowOffsetX = 0;
// 				M.ctx.shadowOffsetY = 0;
// 				M.ctx.shadowBlur = 0;
// 				M.ctx.fillStyle = 'hsla(104, 79%, 74%, ' + (fadeStrength + 0.3) + ')';
// 			} else {
// 				M.ctx.shadowOffsetX = 0;
// 				M.ctx.shadowOffsetY = 0;
// 				M.ctx.shadowBlur = 0;
// 				M.ctx.fillStyle = 'hsla(104, 79%, 74%, ' + strength + ')';
// 			}
// 			// M.ctx.fillStyle = 'hsl(104, 79%, ' + (M.codes[i][0].strength * 74) + '%)';
// 			M.ctx.fillText(text, x, (y - (j * M.settings.COL_HEIGHT)));
// 			if ((j === codeLength - 1) && (y - ((j + 1) * M.settings.COL_HEIGHT) > M.HEIGHT)) {
// 				columnIndex = M.codes[i][0].position.x / M.settings.COL_WIDTH;
// 				M.codes[columnIndex][0].open = true;
// 				M.codes[columnIndex][0].position.y = 0;
// 			}
// 		}
// 	}
// },
draw: function() {
var velocity, height, x, y, c, ctx;
// slow fade BG colour
M.ctx.shadowColor = 'rgba(0, 0, 0, 0.5)';
M.ctx.fillStyle = 'rgba(0, 0, 0, 0.5)';
M.ctx.fillRect(0, 0, M.WIDTH, M.HEIGHT);
M.ctx.globalCompositeOperation = 'source-over';
for (var i = 0; i < M.COLUMNS; i++) {
// check member of array isn't undefined at this point
if (M.codes[i][0].canvas) {
velocity = M.codes[i][0].velocity;
height = M.codes[i][0].canvas.height;
x = M.codes[i][0].position.x;
y = M.codes[i][0].position.y - height;
c = M.codes[i][0].canvas;
ctx = c.getContext('2d');
M.ctx.drawImage(c, x, y, M.settings.COL_WIDTH, height);
if ((M.codes[i][0].position.y - height) < M.HEIGHT){
M.codes[i][0].position.y += velocity;
} else {
M.codes[i][0].position.y = 0;
}
}
}
},
createCode: function() {
if (M.codesCounter > M.COLUMNS) {
clearTimeout(M.createCodeLoop);
return;
}
var randomInterval = M.randomFromInterval(0, 100);
var column = M.assignColumn();
if (column) {
var codeLength = M.randomFromInterval(M.settings.CODE_LENGTH_PARAMS.min, M.settings.CODE_LENGTH_PARAMS.max);
var codeVelocity = (Math.random() * (M.settings.VELOCITY_PARAMS.max - M.settings.VELOCITY_PARAMS.min)) + M.settings.VELOCITY_PARAMS.min;
var lettersLength = M.letters.length;
M.codes[column][0].position = {'x': (column * M.settings.COL_WIDTH), 'y': 0};
M.codes[column][0].velocity = codeVelocity;
M.codes[column][0].strength = M.codes[column][0].velocity / M.settings.VELOCITY_PARAMS.max;
for (var i = 1; i <= codeLength; i++) {
var newLetter = M.randomFromInterval(0, (lettersLength - 1));
M.codes[column][i] = M.letters[newLetter];
}
M.createCanvii(column);
M.codesCounter++;
}
M.createCodeLoop = setTimeout(M.createCode, randomInterval);
},
createCanvii: function(i) {
var codeLen = M.codes[i].length - 1;
var canvHeight = codeLen * M.settings.COL_HEIGHT;
var velocity = M.codes[i][0].velocity;
var strength = M.codes[i][0].strength;
var text, fadeStrength;
var newCanv = document.createElement('canvas');
var newCtx = newCanv.getContext('2d');
newCanv.width = M.settings.COL_WIDTH;
newCanv.height = canvHeight;
for (var j = 1; j < codeLen; j++) {
text = M.codes[i][j];
newCtx.globalCompositeOperation = 'source-over';
newCtx.font = '30px matrix-code';
if (j < 5) {
newCtx.shadowColor = 'hsl(104, 79%, 74%)';
newCtx.shadowOffsetX = 0;
newCtx.shadowOffsetY = 0;
newCtx.shadowBlur = 10;
newCtx.fillStyle = 'hsla(104, 79%, ' + (100 - (j * 5)) + '%, ' + strength + ')';
} else if (j > (codeLen - 4)) {
fadeStrength = j / codeLen;
fadeStrength = 1 - fadeStrength;
newCtx.shadowOffsetX = 0;
newCtx.shadowOffsetY = 0;
newCtx.shadowBlur = 0;
newCtx.fillStyle = 'hsla(104, 79%, 74%, ' + (fadeStrength + 0.3) + ')';
} else {
newCtx.shadowOffsetX = 0;
newCtx.shadowOffsetY = 0;
newCtx.shadowBlur = 0;
newCtx.fillStyle = 'hsla(104, 79%, 74%, ' + strength + ')';
}
newCtx.fillText(text, 0, (canvHeight - (j * M.settings.COL_HEIGHT)));
}
M.codes[i][0].canvas = newCanv;
},
swapCharacters: function() {
var randomCodeIndex;
var randomCode;
var randomCodeLen;
var randomCharIndex;
var newRandomCharIndex;
var newRandomChar;
for (var i = 0; i < 20; i++) {
randomCodeIndex = M.randomFromInterval(0, (M.codes.length - 1));
randomCode = M.codes[randomCodeIndex];
randomCodeLen = randomCode.length;
randomCharIndex = M.randomFromInterval(2, (randomCodeLen - 1));
newRandomCharIndex = M.randomFromInterval(0, (M.letters.length - 1));
newRandomChar = M.letters[newRandomCharIndex];
randomCode[randomCharIndex] = newRandomChar;
}
M.swapCharacters();
},
createLines: function() {
M.linesC = document.createElement('canvas');
M.linesC.width = M.WIDTH;
M.linesC.height = M.HEIGHT;
M.linesC.style.position = 'absolute';
M.linesC.style.top = 0;
M.linesC.style.left = 0;
M.linesC.style.zIndex = 10;
document.body.appendChild(M.linesC);
var linesYBlack = 0;
var linesYWhite = 0;
M.ctx2 = M.linesC.getContext('2d');
M.ctx2.beginPath();
M.ctx2.lineWidth = 1;
M.ctx2.strokeStyle = 'rgba(0, 0, 0, 0.7)';
while (linesYBlack < M.HEIGHT) {
M.ctx2.moveTo(0, linesYBlack);
M.ctx2.lineTo(M.WIDTH, linesYBlack);
linesYBlack += 5;
}
M.ctx2.lineWidth = 0.15;
M.ctx2.strokeStyle = 'rgba(255, 255, 255, 0.7)';
while (linesYWhite < M.HEIGHT) {
M.ctx2.moveTo(0, linesYWhite+1);
M.ctx2.lineTo(M.WIDTH, linesYWhite+1);
linesYWhite += 5;
}
M.ctx2.stroke();
},
assignColumn: function() {
var randomColumn = M.randomFromInterval(0, (M.COLUMNS - 1));
if (M.codes[randomColumn][0].open) {
M.codes[randomColumn][0].open = false;
} else {
return false;
}
return randomColumn;
},
randomFromInterval: function(from, to) {
return Math.floor(Math.random() * (to - from+ 1 ) + from);
},
snapshot: function() {
window.open(M.c.toDataURL());
}
};
function eventListenerz() {
var controlToggles = document.getElementsByClassName('toggle-info');
var controls = document.getElementById('info');
var snapshotBtn = document.getElementById('snapshot');
function toggleControls(e) {
e.preventDefault();
controls.className = controls.className === 'closed' ? '' : 'closed';
}
for (var j = 0; j < 2; j++) {
controlToggles[j].addEventListener('click', toggleControls, false);
}
snapshotBtn.addEventListener('click', M.snapshot, false);
}
window.onload = function() {
M.init();
eventListenerz();
};

Cuối cùng tạo thư mục tên css chứa file style.css có nội dung như sau:

@import url("https://fonts.googleapis.com/css?family=Carrois+Gothic");
@font-face {
font-family: 'matrix-code';
src: url('https://neilcarpenter.com/demos/canvas/matrix/font/matrix-code.eot?#iefix') format('embedded-opentype'), 
url('https://neilcarpenter.com/demos/canvas/matrix/font/matrix-code.woff') format('woff'), 
url('https://neilcarpenter.com/demos/canvas/matrix/font/matrix-code.ttf')  format('truetype'),
url('https://neilcarpenter.com/demos/canvas/matrix/font/matrix-code.svg#svgFontName') format('svg');
}
html, body {
-webkit-font-smoothing: antialiased;
font: normal 12px/14px "Carrois Gothic", sans-serif;
width: 100%;
height: 100%;
margin: 0;
overflow: hidden;
color: #fff;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; 
}
body {
background: black;
}
#stats {
z-index: 100;
}
#info {
background: rgba(0, 0, 0, 0.7);
position: fixed;
bottom: 0;
left: 0px;
width: 250px;
padding: 10px 20px 20px;
z-index: 100;
-webkit-transform-origin: bottom center;
-moz-transform-origin: bottom center;
-o-transform-origin: bottom center;
transform-origin: bottom center;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: -webkit-transform .5s ease-in-out;
-moz-transition:    -moz-transform .5s ease-in-out;
-o-transition:      -o-transform .5s ease-in-out;
transition:         transform .5s ease-in-out;
}
#info.closed {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}
.toggle-info {
position: absolute;
display: block;
height: 10px;
background: rgba(0, 0, 0, 0.8);
width: 290px;
left: 0;
text-align: center;
padding: 3px 0 7px;
text-decoration: none;
color: white;
text-shadow: none;
}
.toggle-info:hover {
background: rgb(0, 0, 0);
}
#close {
top: -20px;
}
#open {
bottom: -20px;
-webkit-transform: rotate(-180deg);
-moz-transform: rotate(-180deg);
-o-transform: rotate(-180deg);
transform: rotate(-180deg);
}
button {
background: rgba(255, 255, 255, 0.2);
color: #fff;
border: 0;
border-radius: 2px;
padding: 7px 10px;
box-shadow: 0 0 3px 0px rgba(255,255,255, 0.3);
cursor: pointer;
}
button:hover {
background: rgba(255, 255, 255, 0.1);
}
p a {
color: #fff;
}
p a:hover {
color: #EFFDEB;
text-shadow: 0px 0px 5px #75AD61;
}

Sau khi tạo xong, bạn sẽ được tập hợp các File theo cấu trúc:

  • index.html
  • css (thư mục)
    style.css
  • js (thư mục)
    index.js

Share code tạo hiệu ứng ma trận 3D cực đẹp cho website 7

Nếu bạn không thể tự làm được thì có thể tải về bộ Source Code được làm sẵn tại link dưới đây:

Tải về Source Code

Vậy là xong, cuối cùng bạn chỉ cần Upload bộ Source Code này lên Host và chia sẽ với bạn bè. Nếu bạn chưa biết cách Upload lên Host thì hãy tham khảo bài viết hướng dẫn của AnonyViet tại link dưới đây:

Cách sử dụng Host

Bạn có thể sử dụng dịch vụ host miễn phí tại 000webhost để thử nghiệm source code nhé !!

Like Fanpage hoặc theo dõi website để cập nhật nhanh các bài viết hay.

Các bài viết liên quan

Hướng dẫn tự làm website đếm ngày yêu nhau 2019 8

Hướng dẫn tự làm website đếm ngày yêu nhau 2019

10/11/2018 - Updated on 01/09/2019
Share bộ Code HTML Ma trận cực đẹp viết bằng Canvas 9

Share bộ Code HTML Ma trận cực đẹp viết bằng Canvas

31/08/2018 - Updated on 12/07/2019
code website Đếm ngày yêu nhau

Hướng dẫn tự làm website đếm ngày yêu nhau cực dễ thương

07/08/2018 - Updated on 12/02/2023
Share code web tỏ tình hẹn hò bạn gái đi coi phim cực lãng mạn 10

Share code web tỏ tình hẹn hò bạn gái đi coi phim cực lãng mạn

04/08/2018 - Updated on 01/09/2019

Chúc bạn thành công
Lmint.

Tags: code webhiệu ứng ma trậnmatrixshare code webtạo website ma trậnwebsite hiệu ứng ma trận 3d
Lmint

Lmint

Người mà bạn nên trông đợi, chỉ có bản thân bạn mà thôi. Đừng phụ thuộc quá nhiều vào người khác để đến khi nhìn lại bản thân thì chẳng làm được gì nên trò.

Related Posts

Code pháo hoa trang trí cho Website dịp tết 11
Code

Code pháo hoa trang trí cho Website dịp tết

25/01/2025 - Updated on 10/02/2025
Code Hiệu Ứng Pháo Hoa Theo Chuột - Trang Trí Website Tết 12
Code

Code Hiệu Ứng Pháo Hoa Theo Chuột – Trang Trí Website Tết

24/12/2024
chuyen giao dien website sang trang den
Code

Code chuyển giao diện Website sang nền trắng đen để tưởng nhớ hoặc để Quốc tang

20/07/2024
Hướng dẫn Active Wordfence Security Premium miễn phí 13
Code

Hướng dẫn Active Wordfence Security Premium miễn phí

07/06/2024
Ronin Engineer Tích Hợp với VNPay Như Thế Nào? 14
Code

Ronin Engineer Tích Hợp với VNPay Như Thế Nào?

02/05/2024
Làm sao để học lập trình hiệu quả và những thứ cần thiết để theo ngành này? 15
Code

Làm sao để học lập trình hiệu quả và những thứ cần thiết để theo ngành này?

28/03/2024 - Updated on 31/03/2024
Subscribe
Notify of
guest

guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

5 Comments
oldest
newest
Inline Feedbacks
View all comments
Nguyễn Văn Sơn
Nguyễn Văn Sơn
6 years ago

Ad ơi! Sao em upload source code lên host như hướng dẫn mà sao khi vào trang web lại đen thui không có gì cả??? Anh xem giúp với ạ! Web em: https://peterparkerson.000webhostapp.com/

Reply
AnonyViet
Admin
AnonyViet
6 years ago
Reply to  Nguyễn Văn Sơn

code bạn vẫn chạy mà

Reply
Nguyễn Phú
Nguyễn Phú
6 years ago

làm sao thêm nhạc vào nhỉ ad

Reply
AnonyViet
Admin
AnonyViet
6 years ago

cảm ơn ad, bài viết rất hay!!!!!!!!!!!!!!!!!!!

Reply
Nam
Nam
6 years ago
Reply to  AnonyViet

cảm ơn ad, bài viết rất hay!!!!!!!!!!!!!!!!!!!

Reply
wpdiscuz   wpDiscuz

Liên hệ Quảng Cáo

Lien he AnonyViet

Bài viết mới

Cách đăng ký chữ ký số MySign trên VNeID miễn phí 8

Cách đăng ký chữ ký số MySign trên VNeID miễn phí

by Thanh Kim
04/07/2025
0

Hướng dẫn xem địa chỉ mới trên VneID sau sáp nhập 9

Hướng dẫn xem địa chỉ mới trên VneID sau sáp nhập

by Thanh Kim
03/07/2025
0

Cách làm lại thẻ căn cước tại nhà siêu tiện lợi và đơn giản 10

Cách làm lại thẻ căn cước tại nhà siêu tiện lợi và đơn giản

by Thanh Kim
03/07/2025
0

5 bước tạo trợ lý AI cá nhân miễn phí với Gemini Gems 11

5 bước tạo trợ lý AI cá nhân miễn phí với Gemini Gems

by Thanh Kim
03/07/2025
0

Giới thiệu

AnonyViet

AnonyViet

Nơi chia sẻ những kiến thức mà bạn chưa từng được học trên ghế nhà trường!

Chúng tôi sẵn sàng đón những ý kiến đóng góp, cũng như bài viết của các bạn gửi đến AnonyViet.

Hãy cùng AnonyViet xây dựng một cộng đồng CNTT lớn mạnh nhất!

Giới thiệu

AnonyViet là Website chia sẻ miễn phí tất cả các kiến thức về công nghệ thông tin. AnonyViet cung cấp mọi giải pháp về mạng máy tính, phần mềm, đồ họa và MMO.

Liên hệ

Email: anonyviet.com[@]gmail.com

1409 Hill Street #01-01A
Old Hill Street Police Station
Singapore 179369

 

DMCA.com Protection Status

Bình luận gần đây

  • bảo trong Download VMware Workstation Pro 17.5 Full Key Serial
  • AnonyViet trong Tự động dọn dẹp máy tính dễ dàng với BleachBit
  • Ly Yong trong Tự động dọn dẹp máy tính dễ dàng với BleachBit
  • AnonyViet trong Hướng dẫn tự tạo SOCKS5 trên Ubuntu
  • Quốc Anh trong Hướng dẫn tự tạo SOCKS5 trên Ubuntu
  • phuong trong KTimer: Lên lịch tắt máy, ngủ đông dễ dàng cho người bận rộn
  • sagar trong Cách khai thác lỗ hổng DLL Hijacking trên Windows
  • nikolai trong Hướng dẫn Hack Camera Điện thoại bằng cách gửi Link Website
  • AI Question Generator trong Hướng dẫn Việt hóa GTA 5 tải từ EPIC để chơi bằng tiếng Việt
  • Stiff trong Cách tạo MTProto Proxy riêng để dùng Telegram khi bị chặn
  • AnonyViet trong Học miễn phí khóa học Phổ cập AI và nhận chứng chỉ từ Trung ương Đoàn
  • Quốc trong Học miễn phí khóa học Phổ cập AI và nhận chứng chỉ từ Trung ương Đoàn
  • AnonyViet trong Cách tạo MTProto Proxy riêng để dùng Telegram khi bị chặn
  • Tienban trong Cách tạo MTProto Proxy riêng để dùng Telegram khi bị chặn
  • Tùng trong So sánh Telegram miễn phí và Telegram Premium
  • blowsy trong Cách Active Key Sublime Text 4 – Tải Sublime Text 4 Full Key
  • haohao2210 trong Hướng dẫn đăng ký ChatGPT Team giá 1$
  • AnonyViet trong Hướng dẫn đăng ký ChatGPT Team giá 1$
  • haohao2210 trong Hướng dẫn đăng ký ChatGPT Team giá 1$
  • Lelo trong TOP 5 thẻ ảo thanh toán quảng cáo và mua hàng trực tuyến năm 2025

©2025 AnonyViet - Chúng tôi mang đến cho bạn những kiến thức bổ ích về Công nghệ Danh mục kết quả xổ số hôm nay trực tiếp bóng đá xoilac colatv truc tiep bong da trang chủ hi88 trang chủ hi88 KUBET xoilac nhà cái 8xbet Kubet bong88 https://cwfun.org/ https://hi88.gives/ 33win 789win ww88 kubet https://thabet-vn.com/ Ae888 kubet 789Club 188BET 188BET Link https://789club10.pro kubet 188bet 8kbet pg88 99ok xin88 good88 https://www.chantalsutherlandjockey.com/ Sun win https://www.go88vn.uk.com/ https://www.rik-vip.uk.com/ kubet w88 cakhiatv Thapcam TV https://78win.id/ Game bài đổi thưởng https://33winlink.live/ hi88 W88 https://78win.dental/ ww88 f168 f8bet k8cc https://qq883a.com/ Leo88 Leo88 nha cai uy tin mu88 casino Vebo TV https://v9betnet.com/ https://ee88vie.com/ max88 manclub iwin 79king https://78winn.city/ ww88 SV388 69VN Zomclub 8kbet https://hi88fz.com/ XO88 https://u888.one/ ABC8 https://go886.org/ https://sunwin10.org/ https://789club10.life/ Jun88 https://jun88pro.org/ 77Bet HB88 123b https://33winvn.me/ Tha bet hello88 188bet kubet11 k8cc f168 FB88 luckywin https://bet88.love/ 188BET fm88 https://horse.uk.com https://xin88.de.com/ SH BET qh88 https://918xxy.com/ 58WIN https://77betvn.me/ https://hb88vn.live/ kubet thailand 789club tài xỉu online uy tín Game bài đổi thưởng uy tín https://www.newfacespac.com/ vip66 xoso66 789 BET vip66 xoso66 luckywin https://tp88fun.com/ Nhà Cái WW88 6789 Daga sodo66 45678 trang chủ hi88 https://bet88bb.com/ 8XBET daga https://8kbet.party/ sin88 RR88 8kbet Mitom TV nhacaiuytin f8bet hello88 qq88 Luckywin 6789 NH88 https://abc8.furniture/ TK88 leo88 hb88 77bet jun88.info https://jbo.center/ 88aa 88aa https://789p.express/ Kuwin GK88 kubet fb68 https://bk8z.com.co/ 79king 789p PG88 SV388 F168 SV388 PG88 https://ok9.today/ Xoso66 Vip66 ABC8 hitclub Wi88 HB88 HB88 https://j88ss.com/ https://789wincom.me/ https://hubett2.org/ bong99 https://mb66.bz/ BET88 69vn com https://fb88nu.com/ qh88 Kubet https://nohu90phut.com/ bet88 https://vibong88.com/ https://nhacaiuytinbiz.com/ king88 https://thabet789.net/ Good88 Ga6789 nhacaiuytin Daga Link https://keonhacai.select/ bet88 FB88 https://69vnn.trading/ https://bet88org.com/ https://88clbus.com/ https://u888rse.com/ XOSO66 https://polodemocratico.info/ https://tartankicks.uk/ https://typhu888.shop https://typhu888.site ae888 88vv bj88 W88 W88 https://fun88.place/ b52 club 13 WIN Bet88 69vn https://nohu90.cc/ 88CLB kubet xin88 ee88 69vn iwin nohu789.net nohu.express fun88 Daga 69vn new882.info Hi88 8day Thabet 33win Bk8 fun88 789win w88 nhà cái uy tín Go88 sunwin sunwin sunwin jun88 bk8 rikvip hitclub sunwin go88 98win 789bet m88 s666 sv388 12bet v9bet betvisa betvisa vin777 vin777 ee88 bet88 78win abc8 c54 new88 i9bet ok365 ae888 https://keonhacai.fund/ https://98win.deal/ FB88 QH88 Tài Xỉu Go88 kèo nhà cái 5 nohu90.store Fun88 bj88 https://gamebai.in.net/ 1bet88 pro nha cai uy tin https://max886.org/ 69VN sunwin NEW88 https://debetoz.com/ hit club e2bet https://bet88zs.com/ 32win 68 game bài NH88 game bài đổi thưởng W88 PG88 https://789win.health/ bet88 33win com F8BET QQ88 https://king88.international/ WIN55 e2bet bl-555.it.com https://bl555.org.uk/ HUBET 79win 78win 789BET 58Win w88 S666 Typhu88 V9BET Bong88 Fb88 sv388 KIWI 12bet Kubet IWIN IWIN good88 i9BET 99ok 123b 789win Good88 79king Nhà cái uy tín Bk8 Hb88 w88 fun88 Kèo nhà cái 789F 78win 8kbet https://vb88.social/ J88 https://tk88678.com/ https://t8kbet.com/ ww88 https://ok9393.com/ 69VN 69VN 69VN 69VN KUBET88 max88 net88 soc88 vn138 qq88 com 23win.solar https://bk8co.net/ https://mitomtv.mobi/ 88vv EV88 PG88 daga 23win sv368 luck8 NN88 Sbobet For88 https://u888me.info/ https://23win0.com/ https://23winme.com 8kbet F168 789BET https://king88aff.com/ 58WIN NOHU90 bet88 88CLB 99ok 97win F168 58WIN 123Win Xoso66 BET88 uu88 https://okking.uk/ alo789 sv368 sv388 dagatructiep ev88 99ok 88vn F168 23win 78win 88clb 18win 79KING SV66 RR88 daga HB88 Tk88 qq88 okking BL555 BL555 rr88 hello88 https://rikbet.team/ https://alo789.rocks/ https://ok365.jpn.com/ https://v9beti.com/ https://23win.codes/ https://58win.digital/ 68win nhà cái uy tín https://qh88.cymru https://qh88.casa https://m88club.biz https://m88vinvn.com https://79kinggod.club https://79kingvn.xyz https://kubet29.vip https://kubet79.top https://w88linkb.com https://188betlinkb.com https://188betlinka.com https://e2beting.com/ 69vn TD88 xoilac cakhiatv socolive QQ88 TP88 69vn King88 zowin 8kbet https://23win.kim/ pg99 https://new88.market/ https://ppc.uk.net/ f8bet E2bet 98WIN daga88 32WIN.SALE hi 88 U888 nohu90 http://9bet.faith/ https://8kbettt.co/ King88 King88 88i https://nohu90ab.com/ kubet https://king886.co/ 69VN 79king 32win 32win VN88 F168 bet88 Xoso66 Luong Son TV daga 6789 6789 32win https://9ae888.com/ https://23win.men/ xoso66 u888 rr88 79king pg88 s666 fb88 ww88 9bet 7ff https://bubet.com/ https://bin88.com/ BET88 https://new88.land/ f168 88vv https://1goal123.com/ i9bet EV88 https://abc8gd.com/ 8xbet https://78win.dental/ 6789 8xbet https://bet886.pro/ hi88 9BET DA88 au88 https://gk88bet.club/ 69vn https://bett88.co/ https://pg99.markets/ https://wargakartu88.com/ https://68gamebai.game/ mu88 com 8kbet Cakhia TV 23win com https://thabetcom.life/ Vnew88 69vn bk8 cola tv colatv trực tiếp bóng đá colatv trực tiếp bóng đá colatv colatv truc tiep bong da colatv colatv bóng đá trực tiếp Xin88 789f Nohu90 https://qq88pro.vip/ https://vzqq888.com/ j88 ventures M88 Nohu nohu90 RR88 789win https://luck8.world/ UW99

No Result
View All Result
  • ANONYVIET CẦN CÁC BẠN GIÚP SỨC
  • Chính sách
  • Mini Game AnonyViet và FShare Mừng xuân 2021
  • Privacy
  • Quảng cáo
  • Search
  • Search Results
  • Share Acc Nhaccuatui VIP 2020
  • Thành Viên VIP
    • Danh Sách Đặc Quyền Thành Viên VIP
  • Tiếp tục đi đến trang mới là tính năng gì
  • Trang chủ
  • Đang lấy thông tin dữ liệu
  • Đang đến địa chỉ đích

©2025 AnonyViet - Chúng tôi mang đến cho bạn những kiến thức bổ ích về Công nghệ Danh mục kết quả xổ số hôm nay trực tiếp bóng đá xoilac colatv truc tiep bong da trang chủ hi88 trang chủ hi88 KUBET xoilac nhà cái 8xbet Kubet bong88 https://cwfun.org/ https://hi88.gives/ 33win 789win ww88 kubet https://thabet-vn.com/ Ae888 kubet 789Club 188BET 188BET Link https://789club10.pro kubet 188bet 8kbet pg88 99ok xin88 good88 https://www.chantalsutherlandjockey.com/ Sun win https://www.go88vn.uk.com/ https://www.rik-vip.uk.com/ kubet w88 cakhiatv Thapcam TV https://78win.id/ Game bài đổi thưởng https://33winlink.live/ hi88 W88 https://78win.dental/ ww88 f168 f8bet k8cc https://qq883a.com/ Leo88 Leo88 nha cai uy tin mu88 casino Vebo TV https://v9betnet.com/ https://ee88vie.com/ max88 manclub iwin 79king https://78winn.city/ ww88 SV388 69VN Zomclub 8kbet https://hi88fz.com/ XO88 https://u888.one/ ABC8 https://go886.org/ https://sunwin10.org/ https://789club10.life/ Jun88 https://jun88pro.org/ 77Bet HB88 123b https://33winvn.me/ Tha bet hello88 188bet kubet11 k8cc f168 FB88 luckywin https://bet88.love/ 188BET fm88 https://horse.uk.com https://xin88.de.com/ SH BET qh88 https://918xxy.com/ 58WIN https://77betvn.me/ https://hb88vn.live/ kubet thailand 789club tài xỉu online uy tín Game bài đổi thưởng uy tín https://www.newfacespac.com/ vip66 xoso66 789 BET vip66 xoso66 luckywin https://tp88fun.com/ Nhà Cái WW88 6789 Daga sodo66 45678 trang chủ hi88 https://bet88bb.com/ 8XBET daga https://8kbet.party/ sin88 RR88 8kbet Mitom TV nhacaiuytin f8bet hello88 qq88 Luckywin 6789 NH88 https://abc8.furniture/ TK88 leo88 hb88 77bet jun88.info https://jbo.center/ 88aa 88aa https://789p.express/ Kuwin GK88 kubet fb68 https://bk8z.com.co/ 79king 789p PG88 SV388 F168 SV388 PG88 https://ok9.today/ Xoso66 Vip66 ABC8 hitclub Wi88 HB88 HB88 https://j88ss.com/ https://789wincom.me/ https://hubett2.org/ bong99 https://mb66.bz/ BET88 69vn com https://fb88nu.com/ qh88 Kubet https://nohu90phut.com/ bet88 https://vibong88.com/ https://nhacaiuytinbiz.com/ king88 https://thabet789.net/ Good88 Ga6789 nhacaiuytin Daga Link https://keonhacai.select/ bet88 FB88 https://69vnn.trading/ https://bet88org.com/ https://88clbus.com/ https://u888rse.com/ XOSO66 https://polodemocratico.info/ https://tartankicks.uk/ https://typhu888.shop https://typhu888.site ae888 88vv bj88 W88 W88 https://fun88.place/ b52 club 13 WIN Bet88 69vn https://nohu90.cc/ 88CLB kubet xin88 ee88 69vn iwin nohu789.net nohu.express fun88 Daga 69vn new882.info Hi88 8day Thabet 33win Bk8 fun88 789win w88 nhà cái uy tín Go88 sunwin sunwin sunwin jun88 bk8 rikvip hitclub sunwin go88 98win 789bet m88 s666 sv388 12bet v9bet betvisa betvisa vin777 vin777 ee88 bet88 78win abc8 c54 new88 i9bet ok365 ae888 https://keonhacai.fund/ https://98win.deal/ FB88 QH88 Tài Xỉu Go88 kèo nhà cái 5 nohu90.store Fun88 bj88 https://gamebai.in.net/ 1bet88 pro nha cai uy tin https://max886.org/ 69VN sunwin NEW88 https://debetoz.com/ hit club e2bet https://bet88zs.com/ 32win 68 game bài NH88 game bài đổi thưởng W88 PG88 https://789win.health/ bet88 33win com F8BET QQ88 https://king88.international/ WIN55 e2bet bl-555.it.com https://bl555.org.uk/ HUBET 79win 78win 789BET 58Win w88 S666 Typhu88 V9BET Bong88 Fb88 sv388 KIWI 12bet Kubet IWIN IWIN good88 i9BET 99ok 123b 789win Good88 79king Nhà cái uy tín Bk8 Hb88 w88 fun88 Kèo nhà cái 789F 78win 8kbet https://vb88.social/ J88 https://tk88678.com/ https://t8kbet.com/ ww88 https://ok9393.com/ 69VN 69VN 69VN 69VN KUBET88 max88 net88 soc88 vn138 qq88 com 23win.solar https://bk8co.net/ https://mitomtv.mobi/ 88vv EV88 PG88 daga 23win sv368 luck8 NN88 Sbobet For88 https://u888me.info/ https://23win0.com/ https://23winme.com 8kbet F168 789BET https://king88aff.com/ 58WIN NOHU90 bet88 88CLB 99ok 97win F168 58WIN 123Win Xoso66 BET88 uu88 https://okking.uk/ alo789 sv368 sv388 dagatructiep ev88 99ok 88vn F168 23win 78win 88clb 18win 79KING SV66 RR88 daga HB88 Tk88 qq88 okking BL555 BL555 rr88 hello88 https://rikbet.team/ https://alo789.rocks/ https://ok365.jpn.com/ https://v9beti.com/ https://23win.codes/ https://58win.digital/ 68win nhà cái uy tín https://qh88.cymru https://qh88.casa https://m88club.biz https://m88vinvn.com https://79kinggod.club https://79kingvn.xyz https://kubet29.vip https://kubet79.top https://w88linkb.com https://188betlinkb.com https://188betlinka.com https://e2beting.com/ 69vn TD88 xoilac cakhiatv socolive QQ88 TP88 69vn King88 zowin 8kbet https://23win.kim/ pg99 https://new88.market/ https://ppc.uk.net/ f8bet E2bet 98WIN daga88 32WIN.SALE hi 88 U888 nohu90 http://9bet.faith/ https://8kbettt.co/ King88 King88 88i https://nohu90ab.com/ kubet https://king886.co/ 69VN 79king 32win 32win VN88 F168 bet88 Xoso66 Luong Son TV daga 6789 6789 32win https://9ae888.com/ https://23win.men/ xoso66 u888 rr88 79king pg88 s666 fb88 ww88 9bet 7ff https://bubet.com/ https://bin88.com/ BET88 https://new88.land/ f168 88vv https://1goal123.com/ i9bet EV88 https://abc8gd.com/ 8xbet https://78win.dental/ 6789 8xbet https://bet886.pro/ hi88 9BET DA88 au88 https://gk88bet.club/ 69vn https://bett88.co/ https://pg99.markets/ https://wargakartu88.com/ https://68gamebai.game/ mu88 com 8kbet Cakhia TV 23win com https://thabetcom.life/ Vnew88 69vn bk8 cola tv colatv trực tiếp bóng đá colatv trực tiếp bóng đá colatv colatv truc tiep bong da colatv colatv bóng đá trực tiếp Xin88 789f Nohu90 https://qq88pro.vip/ https://vzqq888.com/ j88 ventures M88 Nohu nohu90 RR88 789win https://luck8.world/ UW99

wpDiscuz