css实现横向滚动图片相册代码

代码语言:html

所属分类:画廊相册

代码描述:css实现横向滚动图片相册代码下拉选择事件回调示例代码

代码标签: css 横向 滚动 图片 相册 代码

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>
 
<meta charset="UTF-8">
 

 
 
 
 
<style>
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

body {
  display: grid;
  place-items: center;
  width: 100vw;
  width: 100svw;
  height: 100vh;
  height: 100svh;
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
}

* {
  margin: 0;
}

.title {
  position: absolute;
  top: 1rem;
  color: white;
  text-align: center;
  font-family: "Staatliches";
}

.container {
  scroll-behavior: smooth;
  scroll-snap-type: both mandatory;
 
  & > .content {
    scroll-snap-align: start;
  }
 
  height: 100svw;
  position: absolute;
.........完整代码请登录后点击上方下载按钮下载查看

网友评论0