Day-21 KeyBoard Action
917 ワード
keydown
only triggers soon as when fingers press down the key
keypress
only triggers action when fingers are continuously on the key
keyup
only triggers action when lift figers off keyboarddocument.addEventListner('keydown',function(){});
document.addEventListner('keypress',function(){});
document.addEventListner('keyup',function(){});
if (e.key === 'Escape' && !modal.classList.contains('hidden')) {
//if modal class does not contains hidden class close the modal (inverted boolean by using '!')
closeModal();
}
//같은 기능을함
if (e.key === 'Escape') {
if (!modal.classList.contains('hidden')) {
closeModal();
} }
Reference
この問題について(Day-21 KeyBoard Action), 我々は、より多くの情報をここで見つけました
https://velog.io/@ssovival/Day-21-KeyBoard-Action
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
only triggers action when fingers are continuously on the key
keyup
only triggers action when lift figers off keyboarddocument.addEventListner('keydown',function(){});
document.addEventListner('keypress',function(){});
document.addEventListner('keyup',function(){});
if (e.key === 'Escape' && !modal.classList.contains('hidden')) {
//if modal class does not contains hidden class close the modal (inverted boolean by using '!')
closeModal();
}
//같은 기능을함
if (e.key === 'Escape') {
if (!modal.classList.contains('hidden')) {
closeModal();
} }
Reference
この問題について(Day-21 KeyBoard Action), 我々は、より多くの情報をここで見つけました
https://velog.io/@ssovival/Day-21-KeyBoard-Action
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
document.addEventListner('keydown',function(){});
document.addEventListner('keypress',function(){});
document.addEventListner('keyup',function(){});
if (e.key === 'Escape' && !modal.classList.contains('hidden')) {
//if modal class does not contains hidden class close the modal (inverted boolean by using '!')
closeModal();
}
//같은 기능을함
if (e.key === 'Escape') {
if (!modal.classList.contains('hidden')) {
closeModal();
} }
Reference
この問題について(Day-21 KeyBoard Action), 我々は、より多くの情報をここで見つけました https://velog.io/@ssovival/Day-21-KeyBoard-Actionテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol