jquery-ui+css实现玻璃磨砂透明图册拖动效果代码

代码语言:html

所属分类:拖放

代码描述:jquery-ui+css实现玻璃磨砂透明图册拖动效果代码

代码标签: jquery-ui css 玻璃 磨砂 透明 图册 拖动

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

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

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


  <link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&amp;display=swap'>
  
<style>
html,
body {
  height: 100%;
}

body {
  position: relative;
  background-image: url(//repo.bfw.wiki/bfwrepo/icon/6493b3a76a35d.gif);
  background-size: cover;
  background-position: center;
}

.app {
  position: absolute;
  background: linear-gradient(-35deg, rgba(17, 17, 17, 0.55) 0%, rgba(34, 34, 34, 0.55) 100%);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 2em;
  width: 400px;
  height: 280px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: white;
  border-radius: 2em;
  margin: 1em;
}
.app:nth-child(1) {
  top: 180px;
  left: 230px;
}
.app:nth-child(2) {
  top: 80px;
 .........完整代码请登录后点击上方下载按钮下载查看

网友评论0