갤럭시북5 프로 파격할인! 구매하기 스펙,가격까지 총정리
이 콘텐츠는 제휴 마케팅 활동을 통해 업체로부터 이에 따른 일정액의 수수료를 제공받습니다.갤럭시북5 프로 파격할인 기간이 왔습니다, 할인율과 어떤 스펙이 있는지 궁금하셨죠?구매 결정에 큰 도움이 될 수 있도록, 최신 정보와 추천 포인트를 정리해드릴게요그리고 제가 추천드리는 링크에서 사전예약하시면 많은 혜택을 받아가실 수 있습니다!✅ 카드할인 & 장점쿠팡 기준정상가 2,289,000원 → 25% 할인으로 1,699,000원, 여기에 삼성전자와 공식 온라인 파트너로 삼성케어까지 가능! 삼성 공홈에서 구매 시 최저가 2,058,000원입니다. 쿠팡이 30만원정도 더 저렴한걸 알 수 있습니다. 최저가 쿠팡 구매는 아래 링크에서 하시기 바랍니다 👇 갤럭시북5 최저가 구매 이 콘텐츠는 제휴 마케팅 활동을 통해 ..
2025. 9. 5.
맥북 프로 14 M3 (MTL73KH/A), 이거 알고 사야 손해 안 본다!
📋 목차맥북 프로 M3 MTL73KH/A 스펙 한눈에 정리맥북 프로 M3 성능, 정말 만족할까?맥북 프로 M3 단점, 이건 꼭 고려해야 한다!맥북 프로 M3, 새로운 기능 5가지 완벽 정리맥북 프로 M3 디자인과 무게, 휴대성 점수는?맥북 프로 M3 vs 윈도우 노트북, 어떤 게 더 나을까?맥북 프로 M3, 가장 많이 묻는 질문들 (FAQ)애플이 새롭게 출시한 맥북 프로 M3 모델이 큰 주목을 받고 있어요. 최신 M3 칩셋을 탑재하면서 성능과 전력 효율이 더욱 향상됐죠. 하지만 신제품이라고 무조건 좋은 건 아니에요. 가격 대비 성능, 단점, 윈도우 노트북과의 비교 등 다양한 요소를 고려해야 후회 없는 선택을 할 수 있어요. 이번 글에서는 맥북 프로 M3의 스펙과 성능부터 새로운 기능, 단점, 휴대성까지..
2025. 2. 27.
CSS 코드
/* Sliding Banner */
.customBannerArea {
position: relative;
overflow: hidden;
margin: 20px auto;
padding: 0 20px;
text-align: center;
}
.customBox {
position: relative;
overflow: hidden;
margin-bottom: 10px;
}
.customBox iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.customBox .backward {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
object-fit: cover;
}
.customBanner {
position: absolute;
top: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
}
.customBanner img.cover {
width: 100%;
height: 100% !important;
object-fit: cover;
opacity: 0.93;
}
.customBanner.active img {
box-shadow: none !important;
}
.customBanner.active a {
height: 100% !important;
}
/* ✅ 수정된 화살표 스타일 */
.customBanner .arrow {
position: absolute;
top: 50%;
right: 10px;
transform: translateY(-50%);
background-color: #2196f3;
width: 24px;
height: 24px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 16px;
font-weight: bold;
z-index: 10;
box-shadow: 0 2px 5px rgba(0,0,0,0.3);
cursor: pointer;
}
.banner-bubble {
position: absolute;
top: 10px;
background-color: #bd0000;
height: 24px;
width: 77px;
color: white !important;
font-size: 0.75em !important;
border-radius: 5px;
padding-top: 2px;
line-height: 1.2rem !important;
}
.sliding-banner-300 .banner-bubble:after,
.sliding-banner-150 .banner-bubble:after,
.sliding-banner-250 .banner-bubble:after {
content: "";
position: absolute;
bottom: 0;
width: 0;
height: 0;
border: 10px solid transparent;
border-top-color: #bd0000;
border-bottom: 0;
border-left: 0;
margin-left: -2.5px;
margin-bottom: -5px;
}
.sliding-banner-280 .banner-bubble:after {
content: "";
position: absolute;
bottom: 0;
width: 0;
height: 0;
border: 10px solid transparent;
border-top-color: #bd0000;
border-bottom: 0;
border-right: 0;
margin-left: -45.5px;
margin-bottom: -5px;
}
.customBanner.active {
animation: customMv1 1.2s ease-out infinite;
}
@keyframes customMv1 {
0% {
transform: translate3d(-7%, 0, 0);
}
20% {
transform: translate3d(-10%, 0, 0);
}
40% {
transform: translate3d(-5%, 0, 0);
}
60% {
transform: translate3d(-10%, 0, 0);
}
80% {
transform: translate3d(-5%, 0, 0);
}
100% {
transform: translate3d(-7%, 0, 0);
}
}
@media (min-width: 1200px) {
.customBannerArea {
background-color: #ffffffc9;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 0px;
z-index: 1000;
text-align: center;
}
}
/* ✅ 반응형 대응 */
@media (max-width: 768px) {
.customBanner .arrow {
width: 28px;
height: 28px;
font-size: 18px;
right: 8px;
}
}