发现一个没有用前端框架的练手项目,很适合我这种纯后端开发夯实基础,内含50个mini project,学习一下,做做笔记。
效果预览
核心代码:
// 为所有的 panel 注册点击事件 panels.forEach(panel => { panel.addEventListener('click', () => { // 清空所有 active 样式 removeActiveClasses() // 激活被点击 panel 的 active样式 panel.classList.add('active') }) }) function removeActiveClasses() { panels.forEach(panel => { panel.classList.remove('active') }) }
知识点总结:
flex: 5;
classList
可以动态修改节点的 class
效果预览
核心代码:
function update() { // Day1 中的处理方式 circles.forEach((circle, idx) => { if(idx < currentActive) { circle.classList.add('active') } else { circle.classList.remove('active') } }) // 按钮的禁用控制 if(currentActive === 1) { prev.disabled = true } else if(currentActive === circles.length) { next.disabled = true } else { prev.disabled = false next.disabled = false } }
知识点总结:
效果预览
核心代码:
const left = document.querySelector('.left') const right = document.querySelector('.right') const container = document.querySelector('.container') left.addEventListener('mouseenter', () => container.classList.add('hover-left')) left.addEventListener('mouseleave', () => container.classList.remove('hover-left')) right.addEventListener('mouseenter', () => container.classList.add('hover-right')) right.addEventListener('mouseleave', () => container.classList.remove('hover-right'))
知识点总结:
效果预览 (打开音频设备)
核心代码:
const sounds = ['applause', 'boo', 'gasp', 'tada', 'victory', 'wrong'] sounds.forEach(sound => { const btn = document.createElement('button') btn.classList.add('btn') btn.innerText = sound // 注册事件 点击按钮就停止所有音效后,播放当前选中的音乐 btn.addEventListener('click', () => { stopSongs() document.getElementById(sound).play() }) // 加进h5渲染页面 document.getElementById('buttons').appendChild(btn) }) function stopSongs() { sounds.forEach(sound => { const song = document.getElementById(sound) song.pause() song.currentTime = 0; }) }
知识点总结:
audio元素.play()
播放audio元素.pause() audio元素.currentTime = 0
停止效果预览
核心代码:
jokeBtn.addEventListener('click', generateJoke) generateJoke() async function generateJoke() { const config = { headers: { Accept: 'application/json', }, } const res = await fetch('https://icanhazdadjoke.com', config) const data = await res.json() jokeEl.innerHTML = data.joke }
function generateJoke() { const config = { headers: { Accept: 'application/json', }, } fetch('https://icanhazdadjoke.com', config) .then((res) => res.json()) .then((data) => { jokeEl.innerHTML = data.joke }) }
知识点总结:
const insert = document.getElementById('insert') window.addEventListener('keydown', (event) => { insert.innerHTML = ` ${event.key === ' ' ? 'Space' : event.key} event.key ${event.keyCode} event.keyCode ${event.code} event.code ` })
其中一个应用场景是禁止回车提交表单。
function EnterStop(e){ if(e.keyCode == 13){ return false; } }
演示地址
跟 day 1 一样,使用了 active 的思路,并且在js层面用 dom 查找父元素进行样式操作
Frequently Asked Questions
Why shouldn't we trust atoms?
They make up everything
toggle 函数的能力:本例中,如果元素有 active 属性,那么就删除 ative。如果没有则追加。做到了一种类似开关的效果。
const toggles = document.querySelectorAll('.faq-toggle') toggles.forEach(toggle => { toggle.addEventListener('click', () => { toggle.parentNode.classList.toggle('active') }) })
类选择器被激活后,包裹住div,用了一个css中的伪类的技巧。
.faq.active::before, .faq.active::after { content: '\f075'; font-family: 'Font Awesome 5 Free'; color: #2ecc71; font-size: 7rem; position: absolute; opacity: 0.2; top: 20px; left: 20px; z-index: 0; }
这个图是拿css来画出来的,可以观察代码实现,利用了css覆盖的知识
.faq.active::before, .faq.active::after { content: '\f075'; font-family: 'Font Awesome 5 Free'; color: #2ecc71; font-size: 7rem; position: absolute; opacity: 0.2; top: 20px; left: 20px; z-index: 0; } // 覆盖样式,形成蓝色的图形 .faq.active::before { color: #3498db; top: -10px; left: -30px; transform: rotateY(180deg); }
演示地址
Question text
-
上一篇:二分钟掌握!随意玩拼三张有技巧的!(透视)外挂辅助器开挂(2022已更新)-哔哩哔哩
下一篇:创建一个完整的应用程序(App)涉及到多个步骤和不同的技术栈,具体取决于你选择的平台(如iOS、Android、Web等)和使用的编程语言。由于篇幅限制,我将为你概述如何使用几种流行的编程语言和技术栈