어떻게 하면 당신 의 WEB 앱 을 더욱 빨리 달 릴 수 있 습 니까?
<project name="JSCompress" basedir="." default="compress.all">
<property name="lib" value="WEB-INF/lib" />
<property name="jspath" value="js" />
<property name="yui-compressor.jar" location="${lib}/yuicompressor-2.3.4.jar" />
<target name="compress.all">
<concat destfile="${jspath}/allInOne.js">
<filelist dir=".">
<file name="${jspath}/prototype.js">
</file>
<file name="${jspath}/a.js">
</file>
<file name="${jspath}/b.js">
</file>
</filelist>
</concat>
<java jar="${yui-compressor.jar}" fork="true" failonerror="true" logError="true">
<arg value="--nomunge" />
<arg value="--disable-optimizations" />
<arg value="-o" />
<arg value="${jspath}/allInOne.js" />
<arg value="${jspath}/allInOneMerged.js" />
</java>
</target>
</project>
이 예 는 매우 간단 하 니,여러분 스스로 가서 시험 해 보고,약간의 파 라 메 터 를 조정 할 수 있 습 니 다.2)CSS 파일 에 대해 서도 하나의 CSS 파일 에 포장 할 수 있 으 며,위 스 크 립 트 의 concat 작업 을 참고 할 수 있 습 니 다.3)image 파일,특히 자주 사용 되 는 작은 icon 아이콘 을 각각 다운로드 하면 시간 이 낭비 되 는 것 이 어디 있 습 니까?CSS sprite 기술 이 필요 합 니 다.모든 아이콘 을 큰 그림 에 합성 하여 CSS 제어 로 필요 한 작은 아이콘 을 표시 합 니 다.관련 CSS 예 시 는 다음 과 같다.
#container li {background: url(../images/toolbar/toolbar.gif) no-repeat top left;}
.toorbarImageButton
{
background: url(../images/toolbar/toolbar.gif);
background-color : transparent;
background-repeat: no-repeat;
border-style: none;
width: 16px;
height: 16px;
}
/* CSS Rules */
.sprite-new { background-position: 0 -20px; }
.sprite-save { background-position: 0 -56px; }
.sprite-open { background-position: 0 -92px; }
.sprite-Delete { background-position: 0 -164px; }
여기 에는 바보 카메라 처럼 큰 그림 과 CSS 파일 을 직접 만 들 수 있 는 좋 은 사이트 가 있 습 니 다.
http://spritegen.website-performance.org/
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Fortinet FortiWeb Web Application Firewall Policy BypassFrom: Geffrey Velasquez Date: Wed, 2 May 2012 20:33:23 -0500...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.