尚硅谷前端视频总结(二)

article/2025/5/10 14:09:24

尚硅谷前端视频总结(二)

原文链接

动画animation

CSS animation 属性是 animation-nameanimation-duration, animation-timing-functionanimation-delayanimation-iteration-countanimation-directionanimation-fill-modeanimation-play-state 属性的一个简写属性形式。

animation-timing-function: ease;
animation-timing-function: ease-in;//加速
animation-timing-function: ease-out;//减速
animation-timing-function: ease-in-out;//先加速后减速
animation-timing-function: linear;//匀速
animation-timing-function: step-start;
animation-timing-function: step-end;
/* 值为关键字 */
animation-iteration-count: infinite;//循环无限次/* 值为数字 */
animation-iteration-count: 3;
animation-iteration-count: 2.4;/* 指定多个值 */
animation-iteration-count: 2, 0, infinite;
animation-duration
normal
每个循环内动画向前循环,换言之,每个动画循环结束,动画重置到起点重新开始,这是默认属性。
alternate
动画交替反向运行,反向运行时,动画按步后退,同时,带时间功能的函数也反向,比如,ease-in 在反向时成为 ease-out。计数取决于开始时是奇数迭代还是偶数迭代
reverse
反向运行动画,每周期结束动画由尾到头运行。
alternate-reverse
反向交替, 反向开始交替
动画第一次运行时是反向的,然后下一次是正向,后面依次循环。决定奇数次或偶数次的计数从1开始。

用动画和定位写了一个小游戏

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title><style>.box1{margin: 0 auto;width: 900px;height: 900px;border: 1px solid #333;position: relative;}.box2{margin-bottom: 20px;width: 80px;height: 80px;background-color:pink;border-radius: 50%;position: absolute;z-index: 2;}.left-ear{position: absolute;top: -40px;left: -10px;z-index: 0;border: pink solid 10px;height: 50px;width: 10px;border-radius: 20px;background-color: white;animation: ear 1s linear;animation-iteration-count: infinite;}.right-ear{position: absolute;top: -40px;left: 40px;z-index: 0;border: pink solid 10px;height: 50px;width: 10px;border-radius: 20px;background-color: white;animation: ear 1s linear;animation-iteration-count: infinite;}.left-eye{position: absolute;background-color: red;width: 10px;height: 10px;border-radius: 50%;z-index: 10;top: 30px;left: 20px;}.right-eye{position: absolute;background-color: red;width: 10px;height: 10px;border-radius: 50%;z-index: 10;top: 30px;left: 50px;}.nose{color: #333;position: absolute;bottom: 18px;left: 50%;}.mouse-left{position: absolute;bottom: 8px;left: 51%;transform: rotate(180deg)}.mouse-right{position: absolute;bottom: 8px;left: 41%;transform: rotate(180deg)}@keyframes test {from{top: 500px;left: 0px;}to{left: 200px;top: 200px;}}@keyframes ear {from{transform: rotate(0);}to{transform: rotate(-20deg);}}</style>
</head>
<body><div class="box1"></div><script>function rnd( seed ){seed = ( seed * 9301 + 49297 ) % 233280; //为何使用这三个数?return seed / ( 233280.0 );};function rand(number){today = new Date(); seed = today.getTime();return Math.ceil( rnd( seed ) * number );};var box1=document.querySelector('.box1');var target=10;var current=0;var strhtml='';var time=3;var olen= document.styleSheets[0].cssRules.length;var ssss=setInterval(()=>{box1.innerHTML='';if(time>=1){box1.innerHTML='<div style="font-size: 200px;text-align: center;line-height: 800px;">'+time+'</div>';time--;}else{window.clearInterval(ssss)init()}},1000)function init(){while(target>current){strhtml='';strhtml+='<div id="rb'+current+'" class="box2">';strhtml+='<div class="left-ear"></div>';strhtml+='<div class="right-ear"></div>';strhtml+='<div class="left-eye"></div>';strhtml+='<div class="right-eye"></div>';strhtml+='<div class="nose">|</div>';strhtml+='<div class="mouse-left">^</div>';strhtml+='<div class="mouse-right">^</div>';strhtml+='</div>';box1.innerHTML+=strhtml;var a=parseInt(Math.random()*800)+'';var b=parseInt(Math.random()*800)+'';var c=parseInt(Math.random()*800)+'';var d=parseInt(Math.random()*800)+'';var rule='@keyframes mymove'+current+'{0%{top:'+0+'px;right:'+b+'px}50%{top:'+800+'px;right:'+b+'px}100%{top:'+0+'px;right:'+b+'px}}';var rule1='@keyframes mymove'+current+'{0%{bottom:'+0+'px;right:'+b+'px}50%{bottom:'+800+'px;right:'+b+'px}100%{bottom:'+0+'px;right:'+b+'px}}';var rb=document.querySelector('#rb'+current);console.log(Math.random())if(current%2==0){document.styleSheets[0].insertRule(rule,0);rb.setAttribute('style','animation: mymove'+current+' '+(((Math.random()*10)/2)+1)+'s linear infinite;')}else{//console.log(len)document.styleSheets[0].insertRule(rule1,0);//console.log(document.styleSheets[0])rb.setAttribute('style','animation: mymove'+current+' '+(((Math.random()*10)/2)+1)+'s linear infinite;')}current++;}var nlen= document.styleSheets[0].cssRules.length;console.log(olen)console.log(nlen)console.log(document.styleSheets[0])var box2=document.querySelectorAll('.box2'); for(var i of box2 ){i.onmouseover=function(){alert('you lose')//target+=20;current=0;box1.innerHTML='';for(var jishu=0;jishu<(nlen-olen);jishu++){document.styleSheets[0].removeRule();}time=3var ssss=setInterval(()=>{box1.innerHTML='';if(time>=1){box1.innerHTML='<div style="font-size: 200px;text-align: center;line-height: 800px;">'+time+'</div>';time--;}else{window.clearInterval(ssss)init()}},1000)}}}setTimeout(() => {//init();}, 500);</script>    
</body>
</html>

鼠标悬浮下拉二维码样式(小米商城)

在这里插入图片描述

<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title><link rel="stylesheet" href="./css/reset.css"><link rel="stylesheet" href="./css/base.css"><link rel="stylesheet" href="./css/index.css"><link rel="shortcut icon" href="https://s01.mifile.cn/favicon.ico" type="image/x-icon"><style>/* @media only screen and (min-width:580px) and (max-width:980px) {.nav{display: none;}} */</style>
</head><body><!-- 顶部导航栏 --><div class="nav"><div class="navcontent w   clearfix"><div class="nav-left"><ul><li><a href="#">小米商城</a><span class="line">|</span></li><li><a href="#">MIUI</a><span class="line">|</span></li><li><a href="#">loT</a><span class="line">|</span></li><li><a href="#">云服务</a><span class="line">|</span></li><li><a href="#">天星数科</a><span class="line">|</span></li><li><a href="#">有品</a><span class="line">|</span></li><li><a href="#">小爱开放平台</a><span class="line">|</span></li><li><a href="#">企业团购</a><span class="line">|</span></li><li><a href="#">资质证照</a><span class="line">|</span></li><li><a href="#">协议规则</a><span class="line">|</span></li><li id="qr"><a href="#">下载app</a><span class="line">|</span><div class="qrcode"><img src="./img/download.png" alt=""><span>小米商城app</span></div></li><li><a href="#">智能生活</a><span class="line">|</span></li><li><a href="#">Select Location</a></li></ul></div><div class="nav-right"><a href="#"><svg t="1641878401164" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2786" width="200" height="200"><path d="M940.8 284.8c-16-19.2-38.4-28.8-64-28.8H352c-19.2 0-32 12.8-32 32s12.8 32 32 32h524.8c6.4 0 12.8 3.2 16 6.4 3.2 3.2 6.4 9.6 3.2 19.2l-48 336c0 9.6-12.8 19.2-25.6 19.2h-38.4-3.2-444.8c-12.8 0-25.6-16-25.6-28.8L256 300.8l-28.8-156.8C220.8 99.2 182.4 64 134.4 64H96c-19.2 0-32 16-32 32s12.8 32 32 32h38.4c12.8 0 25.6 9.6 28.8 25.6L192 310.4l51.2 371.2C249.6 729.6 288 768 332.8 768h486.4c44.8 0 83.2-32 89.6-73.6L960 355.2c3.2-25.6-3.2-51.2-19.2-70.4z" fill="#666666" p-id="2787"></path><path d="M323.2 896m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z" fill="#666666" p-id="2788"></path><path d="M832 896m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z" fill="#666666" p-id="2789"></path></svg>购物车(0)</a></div><div class="nav-center"><ul><li><a href="#">登录</a><span class="line">|</span></li><li><a href="#">注册</a><span class="line">|</span></li><li><a href="#">消息通知</a><span class="line">|</span></li></ul></div></div></div><!-- 导航栏2 --><div class="sc-nav w"><div class="logo"><img src="./img/logo-mi2.png" alt="logo"></div><div class="search"><div class="com"><input class="sinput" type="text"><a class="sbtn" href="#"><svg t="1641893305362" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6136" width="200" height="200"><path d="M966.4 924.8l-230.4-227.2c60.8-67.2 96-156.8 96-256 0-217.6-176-390.4-390.4-390.4-217.6 0-390.4 176-390.4 390.4 0 217.6 176 390.4 390.4 390.4 99.2 0 188.8-35.2 256-96l230.4 227.2c9.6 9.6 28.8 9.6 38.4 0C979.2 950.4 979.2 934.4 966.4 924.8zM102.4 441.6c0-185.6 150.4-339.2 339.2-339.2s339.2 150.4 339.2 339.2c0 89.6-35.2 172.8-92.8 233.6-3.2 0-3.2 3.2-6.4 3.2-3.2 3.2-3.2 3.2-3.2 6.4-60.8 57.6-144 92.8-233.6 92.8C256 780.8 102.4 627.2 102.4 441.6z" p-id="6137"></path></svg></a></div></div><div class="sc-nav-center"><ul><li><a href="#">Xiaomi手机</a></li><li><a href="#">Redmi红米</a></li><li><a href="#">电视</a></li><li><a href="#">笔记本</a></li><li><a href="#">平板</a></li><li><a href="#">家电</a></li><li><a href="#">路由器</a></li><li><a href="#">服务</a></li><li><a href="#">社区</a></li></ul></div></div><!-- 轮播图 --><div class="continer w clearfix"><img src="./img/m2.png" alt=""><img src="./img/m3.jpg" alt=""><img src="./img/m1.jpg" alt=""><div class="left"><ul><a href="#"><li>手机<svg t="1641886553622" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5188" width="200" height="200"><path d="M857.70558 495.009024 397.943314 27.513634c-7.132444-7.251148-18.794042-7.350408-26.048259-0.216941-7.253194 7.132444-7.350408 18.795065-0.216941 26.048259l446.952518 454.470749L365.856525 960.591855c-7.192819 7.192819-7.192819 18.85544 0 26.048259 3.596921 3.596921 8.311293 5.39487 13.024641 5.39487s9.42772-1.798972 13.024641-5.39487L857.596086 520.949836C864.747973 513.797949 864.796068 502.219239 857.70558 495.009024z" p-id="5189" fill="white"></path></svg></li></a><a href="#"><li>电视<svg t="1641886553622" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5188" width="200" height="200"><path d="M857.70558 495.009024 397.943314 27.513634c-7.132444-7.251148-18.794042-7.350408-26.048259-0.216941-7.253194 7.132444-7.350408 18.795065-0.216941 26.048259l446.952518 454.470749L365.856525 960.591855c-7.192819 7.192819-7.192819 18.85544 0 26.048259 3.596921 3.596921 8.311293 5.39487 13.024641 5.39487s9.42772-1.798972 13.024641-5.39487L857.596086 520.949836C864.747973 513.797949 864.796068 502.219239 857.70558 495.009024z" p-id="5189" fill="white"></path></svg></li></a><a href="#"><li>笔记本 平板<svg t="1641886553622" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5188" width="200" height="200"><path d="M857.70558 495.009024 397.943314 27.513634c-7.132444-7.251148-18.794042-7.350408-26.048259-0.216941-7.253194 7.132444-7.350408 18.795065-0.216941 26.048259l446.952518 454.470749L365.856525 960.591855c-7.192819 7.192819-7.192819 18.85544 0 26.048259 3.596921 3.596921 8.311293 5.39487 13.024641 5.39487s9.42772-1.798972 13.024641-5.39487L857.596086 520.949836C864.747973 513.797949 864.796068 502.219239 857.70558 495.009024z" p-id="5189" fill="white"></path></svg></li></a><a href="#"><li>家电<svg t="1641886553622" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5188" width="200" height="200"><path d="M857.70558 495.009024 397.943314 27.513634c-7.132444-7.251148-18.794042-7.350408-26.048259-0.216941-7.253194 7.132444-7.350408 18.795065-0.216941 26.048259l446.952518 454.470749L365.856525 960.591855c-7.192819 7.192819-7.192819 18.85544 0 26.048259 3.596921 3.596921 8.311293 5.39487 13.024641 5.39487s9.42772-1.798972 13.024641-5.39487L857.596086 520.949836C864.747973 513.797949 864.796068 502.219239 857.70558 495.009024z" p-id="5189" fill="white"></path></svg></li></a><a href="#"><li>出行 穿戴<svg t="1641886553622" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5188" width="200" height="200"><path d="M857.70558 495.009024 397.943314 27.513634c-7.132444-7.251148-18.794042-7.350408-26.048259-0.216941-7.253194 7.132444-7.350408 18.795065-0.216941 26.048259l446.952518 454.470749L365.856525 960.591855c-7.192819 7.192819-7.192819 18.85544 0 26.048259 3.596921 3.596921 8.311293 5.39487 13.024641 5.39487s9.42772-1.798972 13.024641-5.39487L857.596086 520.949836C864.747973 513.797949 864.796068 502.219239 857.70558 495.009024z" p-id="5189" fill="white"></path></svg></li></a><a href="#"><li>智能 路由器<svg t="1641886553622" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5188" width="200" height="200"><path d="M857.70558 495.009024 397.943314 27.513634c-7.132444-7.251148-18.794042-7.350408-26.048259-0.216941-7.253194 7.132444-7.350408 18.795065-0.216941 26.048259l446.952518 454.470749L365.856525 960.591855c-7.192819 7.192819-7.192819 18.85544 0 26.048259 3.596921 3.596921 8.311293 5.39487 13.024641 5.39487s9.42772-1.798972 13.024641-5.39487L857.596086 520.949836C864.747973 513.797949 864.796068 502.219239 857.70558 495.009024z" p-id="5189" fill="white"></path></svg></li></a><a href="#"><li>电源 配件<svg t="1641886553622" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5188" width="200" height="200"><path d="M857.70558 495.009024 397.943314 27.513634c-7.132444-7.251148-18.794042-7.350408-26.048259-0.216941-7.253194 7.132444-7.350408 18.795065-0.216941 26.048259l446.952518 454.470749L365.856525 960.591855c-7.192819 7.192819-7.192819 18.85544 0 26.048259 3.596921 3.596921 8.311293 5.39487 13.024641 5.39487s9.42772-1.798972 13.024641-5.39487L857.596086 520.949836C864.747973 513.797949 864.796068 502.219239 857.70558 495.009024z" p-id="5189" fill="white"></path></svg></li></a><a href="#"><li>健康 儿童<svg t="1641886553622" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5188" width="200" height="200"><path d="M857.70558 495.009024 397.943314 27.513634c-7.132444-7.251148-18.794042-7.350408-26.048259-0.216941-7.253194 7.132444-7.350408 18.795065-0.216941 26.048259l446.952518 454.470749L365.856525 960.591855c-7.192819 7.192819-7.192819 18.85544 0 26.048259 3.596921 3.596921 8.311293 5.39487 13.024641 5.39487s9.42772-1.798972 13.024641-5.39487L857.596086 520.949836C864.747973 513.797949 864.796068 502.219239 857.70558 495.009024z" p-id="5189" fill="white"></path></svg></li></a><a href="#"><li>耳机 音响<svg t="1641886553622" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5188" width="200" height="200"><path d="M857.70558 495.009024 397.943314 27.513634c-7.132444-7.251148-18.794042-7.350408-26.048259-0.216941-7.253194 7.132444-7.350408 18.795065-0.216941 26.048259l446.952518 454.470749L365.856525 960.591855c-7.192819 7.192819-7.192819 18.85544 0 26.048259 3.596921 3.596921 8.311293 5.39487 13.024641 5.39487s9.42772-1.798972 13.024641-5.39487L857.596086 520.949836C864.747973 513.797949 864.796068 502.219239 857.70558 495.009024z" p-id="5189" fill="white"></path></svg></li></a><a href="#"><li>生活 箱包<svg t="1641886553622" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5188" width="200" height="200"><path d="M857.70558 495.009024 397.943314 27.513634c-7.132444-7.251148-18.794042-7.350408-26.048259-0.216941-7.253194 7.132444-7.350408 18.795065-0.216941 26.048259l446.952518 454.470749L365.856525 960.591855c-7.192819 7.192819-7.192819 18.85544 0 26.048259 3.596921 3.596921 8.311293 5.39487 13.024641 5.39487s9.42772-1.798972 13.024641-5.39487L857.596086 520.949836C864.747973 513.797949 864.796068 502.219239 857.70558 495.009024z" p-id="5189" fill="white"></path></svg></li></a></ul></div><div class="right"><ul><li><a href="#"><div class="dot" onclick="change(0)"></div></a></li><li><a href="#"><div class="dot" onclick="change(1)"></div></a></li><li><a href="#"><div class="dot" onclick="change(2)"></div></a></li></ul></div></div><!-- 广告 --><div class="ad w clearfix"><div class="ad-left"><a href="#"><img src="./img/m7.png" alt=""></a></div><div class="ad-right"><a href="#"><img src="./img/m4.jpg" alt=""></a><a href="#"><img src="./img/m5.png" alt=""></a><a href="#"><img src="./img/m6.jpeg" alt=""></a></div></div><script>let imgarray=document.querySelectorAll('.continer img');let liarray=document.querySelectorAll('.dot');var count=0;function change(id){count=id;if(count==3){count=0;}for(let [index,img] of imgarray.entries()){if(count!=index){img.style.zIndex=0;liarray[index].classList.remove('dot-active');}}imgarray[count].style.zIndex=1;liarray[count].classList.add('dot-active');count++;}setInterval(() => {change(count);}, 2000);</script>
</body></html>

index.css

.icon{width: 16px;height: 16px;color: white;
}
.line{color: #424242;margin: 0 8px 0 8px;
}
.nav{background-color: #333;height: 40px;
}
.nav a{color: #b0b0b0;font-size: 12px;
}
.nav a:hover{color: white;
}
.nav-left ul li{line-height: 40px;float: left;}
.nav-center ul li{line-height: 40px;float:left;
}
.nav-right,.nav-center{line-height: 40px;float: right;
}
.nav-right{width: 120px;text-align: center;}
.nav-right:hover a{color: white;}
.nav-right:hover{background-color: rgba(255, 255, 255, 0.1)
}
#qr{position: relative;
}
#qr:hover .qrcode{/* display: block; *//* height: 150px;transition: height .2s; */height: 150px;transition: height .5s;}
#qr:hover:before{display: block;
}.qrcode{transition: height .5s;position: absolute;background-color: white;z-index: 21;width: 124px;height: 0px;/* height: 150px; */height: 0px;box-sizing: border-box;left: -40px;box-shadow: 0 1px 5px #aaa;;text-align: center;overflow: hidden;/* display: none; */}
.qrcode img{width: 100px;height: 100px;vertical-align: middle;margin: 12px 12px 0px 12px;
}#qr::before{content: '';/* display: block; */position: absolute;border-right: 8px solid transparent;border-left: 8px solid transparent;border-bottom: 8px solid white;bottom: 0px;left: 16px;/* opacity: 0; */display: none;z-index: 200;
}/* 第二导航栏 */
.sc-nav{position: relative;height: 100px;line-height: 100px;
}
.logo{float: left;position: absolute;
}
.logo img{width: 55px;height: 55px;vertical-align: middle;}
.sc-nav-center,.search{position: absolute;float: right;}
.sc-nav-center li{margin: 0 10px 0 10px;float: left;
}
.search{right: 0;
}
.sc-nav-center{left: 16%;
}.sc-nav-center a{font-size: 16px;color: #333;
}
.sc-nav-center a:hover{color: orange;
}.sinput{padding: 0;height: 50px;width: 244px;border: solid #b0b0b0 1px;
}.com:hover .sinput{outline: none;border: #333 solid 0.5px;;
}
.com:hover .sbtn{border: #333 solid 0.5px;border-left: none;}
.sinput:focus{outline: none;
}
.search a{display: inline-block;text-align: center;}
.search .icon{width: 25px;height: 25px;position: relative;top: -18px;
}.sbtn{padding: 0;position: relative;top: 25px;display: inline-block;height: 50px;width: 50px;background-color: white;border-left: none;border-right: solid #b0b0b0 1px;border-top: solid #b0b0b0 1px;border-bottom: solid #b0b0b0 1px;
}
.sbtn:hover{background-color: rgb(255, 102, 0);
}/* 轮播图 */
.continer{position: relative;height: 460px;
}
.continer img{position: absolute;width: 100%;height: 460px;
}
.left{position: absolute;background-color: rgba(0, 0, 0, 0.253);z-index: 20;width: 234px;padding: 20px 0 20px 0;}
.left li {height: 42px;line-height: 42px;padding:0 20px 0 20px;
}
.left a{font-size: 14px;color: white;
}
.left .icon {margin-top: 11px;color: white;float: right;font-size: 20px;
}
.left li:hover{background-color: tomato;
}
.dot::before{content: '';display: block;height: 10px;width: 10px;border-radius: 50%;background-color: #333;background-clip: content-box;border: 2px solid #b0b0b0;
}
.right li{float: left;margin: 0 5px 0 5px;
}
.right{position: absolute;z-index: 20;right: 20px;bottom: 20px;
}
.dot-active::before{background-color: white;
}
.ad{margin-top: 18px;
}
.ad-right{float:right;width: 81%;}
.ad-left{float: left;width: 19%;
}.ad-right img{width: 316px;height: 170px;
}.ad-right a{display: block;float: right;margin-left: 15px;height: 170px;
}

http://chatgpt.dhexx.cn/article/0kKytQaa.shtml

相关文章

Spring Cloud 尚硅谷阳哥学习笔记,每一行代码均有解释,适合快速上手,并配合尚硅谷视频食用

Spring Cloud ATenOne ❤️ 一、正常 SpringBoot 环境的测试 1、版本的选择 SpringCloud Hoxton.SR1SpringBoot 2.2.2.RELEASESpringCloud Alibaba 2.1.0.RELEASEJava 8Maven 3.5Mysql 8.0.25 父 pom.xml 如下 <?xml version"1.0" encoding"UTF-8&quo…

vue3快速上手(尚硅谷视频笔记)

Vue3快速上手 1.Vue3简介 2020年9月18日&#xff0c;Vue.js发布3.0版本&#xff0c;代号&#xff1a;One Piece&#xff08;海贼王&#xff09;耗时2年多、2600次提交、30个RFC、600次PR、99位贡献者github上的tags地址&#xff1a;https://github.com/vuejs/vue-next/releas…

Linux全笔记(尚硅谷视频)

Linux是什么 是一个操作系统&#xff08;OS&#xff09; 李纳斯托瓦兹 Linux 能运行主要的 UNIX 工具软件、应用程序和网络协议。它支持 32 位和 64 位硬件。Linux 继承了 Unix 以网络为核心的设计思想&#xff0c;是一个性能稳定的多用户网络操作系统。 比较WindowsLinux界…

软件开发介绍-尚硅谷视频学习随记

目录 软件开发相关概念 Java相关介绍 环境配置 常用dos命令 常用快捷键 软件开发相关概念 1.软件&#xff1a;一系列按照特定顺序组织的计算机数据和指令集合&#xff0c;进而构成的一种工具。分为系统软件&#xff08;操作系统&#xff09;和应用软件。 应用程序算法数据…

NodeJs(尚硅谷视频学习笔记)

内容来自尚硅谷Nodejs学习课件以及自己添加 课前预热&#xff1a;CMD基本知识 1.命令行窗口&#xff08;小黑屏&#xff09;、CMD窗口、终端、shell - 开始菜单 --> 运行 --> CMD --> 回车 - Win R --> CMD --> 回车 - 常用的指令dir 列出当前目录下的所…

前端项目-尚品会-来自b站尚硅谷视频

目录 前言gulishop-client---vue2项目目录分页器 前言 重温Vue&#xff0c;打开之前的项目文件夹&#xff0c;陌生又熟悉… 3月份左右看的项目视频&#xff0c;现在已经忘得差不多了…甚至记不清自己是看的哪个视频…刚刚才想起来自己并没有看Vue的视频教程&#xff0c;当初直…

Linux的使用_尚硅谷视频学习笔记

到达底部 文章目录 Linux的使用参考 第 1 章 Linux 开山篇1.1 本套 Linux 课程的内容介绍1.2 Linux 的学习方向1.3 Linux 的应用领域1.3.1个人桌面应用领域1.3.2服务器应用领域1.3.3嵌入式应用领域 1.4 学习 Linux 的阶段&#xff08;高手进阶过程&#xff09;1.5 Linux 的学习…

【javaScript】学完js基础,顺便把js高级语法学了(尚硅谷视频学习笔记)

文章目录 【1】基本总结深入一、什么是数据1、数据类型基本&#xff08;值&#xff09;类型对象&#xff08;引用&#xff09;类型 2、判断相关问题 二、什么是内存1、什么是数据2、什么是内存&#xff1f;3、什么是变量4、内存、数据、变量三者之间的关系相关问题1、问题&…

Mybatis-plus (教程来自尚硅谷视频)

1.什么是Mybatis-plus? 官网地址&#xff1a;MyBatis-Plus 1.1MyBatis-Plus&#xff08;简称 MP&#xff09;是一个 MyBatis的增强工具&#xff0c;在 MyBatis 的基础上只做增强不做改变&#xff0c;为简化开发、提高效率而生。 Mybatis-plus的愿景成为Mybatis的最好拍档&a…

JavaSE(尚硅谷视频学习笔记)

文章目录 Java基础编程Java语言概述Java语言简述1.基础图解2.常识3.计算机语言的发展迭代4.Java语言版本迭代概述5. Java语言应用的领域6.Java语言的特点 开发环境的搭建1. JDK、JRE、JVM的关系2. JDK的下载安装 注释与API文档1. 注释Comment2. Java API 文档3. 良好的编程风格…

尚硅谷Java入门视频教程(一)编程入门

冯诺依曼体系结构&#xff1a;中央处理器(CPU)(寄存器、算术逻辑单元、控制单元)、内存(主存)、存储设备(内存、硬盘)、输入输出设(外设、显示器)、通信设备(网卡等)。通过总线连接&#xff0c;传输数据。 中央处理器&#xff1a;(Central Processing Unit CPU)&#xff1a;获…

尚硅谷Java入门视频教程第五章——面向对象编程(中)

尚硅谷Java入门视频教程第五章——面向对象编程&#xff08;中&#xff09; 第5章&#xff1a;面向对象编程(中)5.1 面向对象特征之二&#xff1a;继承性5.2 方法的重写&#xff08;override/overwrite&#xff09;5.3 四种访问权限修饰符5.4 关键字&#xff1a;super5.5 子类对…

“为了对电脑进行保护,已经阻止此应用。”

环境&#xff1a;Win10专业版 解决方法&#xff1a;

win10运行安装软件程序提示“为了对电脑进行保护,已经阻止此应用” 有效解决方法记录

问题&#xff1a; 解决&#xff1a; 在程序文件上&#xff0c;按住【shift】键&#xff0c;同时点击鼠标右键→【复制为路径】&#xff0c;打开C:\Windows\System32&#xff0c;找到cmd.exe&#xff0c;右键→【以管理员身份运行】&#xff0c;在打开的界面将路径粘贴&#xff…

【windows】Windows10为了对电脑进行保护,已经阻止此应用解决方案

winr打开运行输入“gpedit.msc”,打开“本地组策略编辑器”&#xff0c;依次点开&#xff1a; 1.计算机配置 2.Windows设置 3.安全设置 4.本地策略 5.安全选项 在右边框内找到并双击“用户账户控制&#xff1a;以管理员批准模式运行所有管理员” 在打开的对话框中选择“…

为了对电脑进行保护,已经阻止此应用 解决办法

上面就是问题&#xff0c;这个是我在安装百度硬盘搜索的时候出现的&#xff0c;不知道啥原因。在网上找了一堆的解决方法都没有成功&#xff0c;比如修改本地策略&#xff0c;修改安全级别等等。最后发现一个人的方法有效分享给大家&#xff1a; 1.用管理员身份执行cmd 2.复制该…

Win10提示“为了对电脑进行保护,已经阻止此应用”如何解决

Win10提示“为了对电脑进行保护,已经阻止此应用”如何解决 从Win7系统升级到Win10正式版系统后&#xff0c;发现其他目录的一些程序都无法打开&#xff0c;且提示“为了对电脑进行保护&#xff0c;已经阻止此应用”&#xff0c;这是怎么回事呢&#xff1f;其实&#xff0c;该问…

Win10家庭版安装软件时提示“为了对电脑进行保护,已经阻止此应用”

如果你遇到了这个问题 你也是Win10家庭版&#xff0c;则下面的方法拯救不了你&#xff1a; 第一步&#xff1a; 恢复组策略 在桌面新建文本文档&#xff0c;粘贴代码&#xff1a; echo off pushd “%~dp0” dir /b C:\Windows\servicing\Packages\Microsoft-Windows-Group…

为了保护您的计算机,windows已经关闭了此程序,电脑Win7升级Win10系统后运行程序提示为了对电脑进行保护已经阻止此应用的解决方法...

随着我国互联网技术不断的进步,计算机网络的发展也逐渐趋向成熟。计算机网络发展为人民群众生活带来了很大的益处,使得人们的生活更便捷与信息化。下面是学习啦小编为大家整理的关于电脑Win7升级Win10系统后运行程序提示为了对电脑进行保护已经阻止此应用的解决方法&#xff0c…

2021-01-29-Windows10系统专业版-右键计算机管理,弹出警告框:为了对电脑进行保护,已阻止此应用。 管理员已阻止你运行此应用。有关详细信息,请与管理员联系。完美解决方案

1、按windows按钮&#xff0c;输入cmd&#xff0c;有一个以管理员身份运行的命令&#xff0c;点击打开 1.1、如果找不到&#xff0c;可以试试这个路径&#xff1a;C:\Users\Administrator\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\System Tools&#xff0c;里面…