svg 객체 생성으로 container에 사선 표현
A Pen by richard park on CodePen.
<div id="container"><!-- container --> | |
<div id="sizer"></div> | |
<div id="wrapper"> | |
<div class="container flex-middle"> | |
<div class="wrap"> | |
<div class="module"> | |
<h1>container 1</h1> | |
<p>Paragraph</p> | |
</div> | |
</div> |
atom-sync-settings |
svg 객체 생성으로 container에 사선 표현
A Pen by richard park on CodePen.
박순길입니다. | |
법인 마이페이지 추가 작업 범위를 진단했으나 (html) | |
이미 작업된 디자인 추가분을 제외하고는 | |
주요 추가 화면을 발견할 수 없었습니다. | |
메일수신, 코드비머에 게시된 | |
소스중 법인에 관련된 | |
총 5개 스토리보드를 점검했으며 |
var foo = function(){
alert('test');
};
function MM_preloadImages() { //v3.0 | |
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array(); | |
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i>a.length; i++) | |
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}} | |
} |
/** | |
* function $.fn.onVisible runs callback function once the specified element is visible. | |
* callback: A function to execute at the time when the element is visible. | |
* example: $(selector).onVisible(callback); | |
*/ | |
(function($) { | |
$.fn.onVisible = function(callback) { | |
var self = this; | |
var selector = this.selector; |
A Pen by richard park on CodePen.
function throttle(fn, time) { | |
var t = 0; | |
return function() { | |
var args = arguments, ctx = this; | |
clearTimeout(t); | |
t = setTimeout( function() { | |
fn.apply( ctx, args ); | |
}, time ); | |
}; |