일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- 앱 마케팅 전략
- nodeValue
- js
- yet
- innerText
- a11y
- CSS
- eas build
- es6
- HTML
- 앱 시장 조사
- modal
- node
- react
- snyk
- Empty
- Review
- addEventListener
- 빌드 전 점검
- textContent
- expo
- innerHTML
- javascript
- node.js
- eas
- ES5
- UI
- 커스텀 테마
- Event
- Dom
- Today
- Total
목록#dev/개념정리 (74)
the murmurous sea
1. method 2. creates a new array filled with all array elements that pass a test (provided as a function). 3. does not execute the function for array elements without values. 4. does not change the original array. [Syntax] let newArray = arr.filter(callback(element[, index, [array]])[, thisArg]) ▽ callback Required A function to be run for each element in the array. is a predicate, to test each ..
forEach() 1. method 2. executes a provided function once for each array element, in order. 3. for array elements without values? [Syntax] arr.forEach(callback(currentValue [, index [, array]])[, thisArg]) ▽ callback Required Function to execute on each element in the array. function(currentValue, index, arr) currentValue Required. The current element being processed in the array. index Optional...

Hierarchy tree of nodes from: https://www.javascriptinstitute.org/javascript-tutorial/document-object-model/ Document Object Model - JavaScript Institute The Window object has a document property, which is reference to a Document object and is also available as a global variable. The Document object represents the content of the window and is the main object of Document Object Model. Document Ob..
for Embedding custom non-visible data with the data-* attributes - Any attribute that starts with data- will be treated as a storage area for private data. Additionally, this won't affect the layout or presentation. - A custom data attribute is an attribute in no namespace whose name starts with the string "data-", has at least one character after the hyphen, is XML-compatible, and contains no A..
- A grid-based layout system, with rows and columns. Like tables, grid layout enables an author to align elements into columns and rows. - CSS Grid Layout excels at dividing a page into major regions or defining the relationship in terms of size, position, and layer, between parts of a control built from HTML primitives. - Many more layouts are either possible or easier with CSS grid than they w..
1. Absolute positioning and margin auto - An element with no intrinsic size: equal values from the top and bottom. - An element has intrinsic dimensions: 0 for top and bottom, then apply margin auto. - The limitation: the element height must be explicitly declared, or it will occupy the entire container. .container{ position:relative; } .element{ position:absolute; top: 0; bottom: 0; left: 0; ri..
1. Non-semantic elements : and - Tells nothing about its content. - are used to group together a chunk of HTML and hook some information onto that chunk, most commonly with the attributes class and id. - element is in-line and usually used for a small chunk of HTML inside a line. - (division) element is block-line and used to group larger chunks of code. 2. Semantic elements : Clearly defines it..
- CSS has several different units for expressing a length. - A whitespace cannot appear between the number and the unit. However, if the value is 0, the unit can be omitted. - For some CSS properties, negative lengths are allowed. There are two types of length units: absolute and relative. 1. Absolute Lengths Absolute length units are not recommended for use on screen, because screen sizes vary ..
In this example below you will see how to do a poptrox with some HTML / CSS and Javascript Configurable and responsive jQuery lightbox plugin with different content types. from https://www.codeseek.co/devmount/poptrox-wBqgPd
1. from: https://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/ OCTOBER 17, 2012 - # In Windows 8, there are two “modes” of use: Metro mode and classic mode. Metro mode sports the spiffy new UI while classic is the same old boring Windows of yore. # When you run Internet Explorer 10 in Metro mode (the default) there’s a cool new feature that lets you “snap” a window to the side so y..