欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

css js炫酷的效果

林雅南2年前16瀏覽0評論

CSS和JS都是前端開發(fā)中經(jīng)常使用的技術(shù),在網(wǎng)頁設(shè)計中,炫酷的效果能夠吸引用戶的注意力,提升用戶體驗,以下是一些常見的CSS和JS炫酷的效果。

// 3D旋轉(zhuǎn)效果
.box{
width: 200px;
height: 200px;
border: 1px solid #ccc;
transform-style: preserve-3d;
transform: rotateY(45deg);
}
// 滾動切換效果
.tabs{
display: flex;
border-bottom: 1px solid #ccc;
}
.tabs >li{
flex: 1;
text-align: center;
height: 50px;
line-height: 50px;
cursor: pointer;
background-color: #f1f1f1;
}
.tabs >li.active{
background-color: #fff;
}
.content{
display: none;
}
.content.active{
display: block;
}
// 無限滾動效果
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
.wrap{ height: 100px; overflow: hidden; } .list{ animation: marquee 10s linear infinite; } .list li{ float: left; width: 100px; height: 100px; line-height: 100px; text-align: center; background-color: #f1f1f1; margin-right: 10px; } @keyframes marquee { 0%{ transform: translateX(0); } 100%{ transform: translateX(-910px); } }

通過使用CSS和JS來實現(xiàn)這些炫酷的效果,可以為用戶帶來更好的網(wǎng)頁瀏覽體驗,同時也體現(xiàn)了前端開發(fā)的技巧和魅力。