|
@@ -12,7 +12,7 @@
|
|
<script src="js/4dage.js"></script>
|
|
<script src="js/4dage.js"></script>
|
|
<script src="./info.js"></script>
|
|
<script src="./info.js"></script>
|
|
<script>
|
|
<script>
|
|
- document.title=titleInfo
|
|
|
|
|
|
+ document.title = titleInfo
|
|
</script>
|
|
</script>
|
|
<style>
|
|
<style>
|
|
html {
|
|
html {
|
|
@@ -48,7 +48,7 @@
|
|
}
|
|
}
|
|
|
|
|
|
.back {
|
|
.back {
|
|
- z-index: 9999;
|
|
|
|
|
|
+ z-index: 998;
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
width: 30px;
|
|
width: 30px;
|
|
height: 30px;
|
|
height: 30px;
|
|
@@ -61,6 +61,7 @@
|
|
width: 100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
+
|
|
.outerImg {
|
|
.outerImg {
|
|
transition: all 1s;
|
|
transition: all 1s;
|
|
opacity: 1;
|
|
opacity: 1;
|
|
@@ -79,10 +80,164 @@
|
|
height: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
object-fit: cover;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ /* ---------------按钮和文字介绍------------- */
|
|
|
|
+ body {
|
|
|
|
+ user-select: none;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ .topButn {
|
|
|
|
+ opacity: 0;
|
|
|
|
+ pointer-events: none;
|
|
|
|
+ z-index: 999;
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 50px;
|
|
|
|
+ left: 10px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .topButn div {
|
|
|
|
+ padding: 0 5px;
|
|
|
|
+ margin-bottom: 10px;
|
|
|
|
+ width: 100%;
|
|
|
|
+ height: 40px;
|
|
|
|
+ line-height: 40px;
|
|
|
|
+ border-radius: 20px;
|
|
|
|
+ font-size: 18px;
|
|
|
|
+ color: #fff;
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ text-align: center;
|
|
|
|
+ /* background-color: #f2cd83; */
|
|
|
|
+ background-color: #ccc;
|
|
|
|
+ border-radius: 5px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .con::-webkit-scrollbar {
|
|
|
|
+ /*滚动条整体样式*/
|
|
|
|
+ width: 3px;
|
|
|
|
+ /*高宽分别对应横竖滚动条的尺寸*/
|
|
|
|
+ height: 1px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .con::-webkit-scrollbar-thumb {
|
|
|
|
+ /*滚动条里面小方块*/
|
|
|
|
+ border-radius: 10px;
|
|
|
|
+ box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
|
|
|
|
+ background: #f2cd83;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .con::-webkit-scrollbar-track {
|
|
|
|
+ /*滚动条里面轨道*/
|
|
|
|
+ box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
|
|
|
|
+ border-radius: 10px;
|
|
|
|
+ background: #ededed;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .txtOne {
|
|
|
|
+ opacity: 0;
|
|
|
|
+ pointer-events: none;
|
|
|
|
+
|
|
|
|
+ padding: 30px 15px 30px 30px;
|
|
|
|
+ z-index: 1000;
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 150px;
|
|
|
|
+ left: 10px;
|
|
|
|
+ background-image: url('./img/divBac.png');
|
|
|
|
+ background-color: rgba(0, 0, 0, .6);
|
|
|
|
+ background-size: 100% 100%;
|
|
|
|
+ width: 400px;
|
|
|
|
+ height: 500px;
|
|
|
|
+ z-index: 9999;
|
|
|
|
+ color: #a08742;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .txtOne .con {
|
|
|
|
+ text-align: justify;
|
|
|
|
+ padding-right: 28px;
|
|
|
|
+ line-height: 30px;
|
|
|
|
+ margin-bottom: 30px;
|
|
|
|
+ overflow-y: auto;
|
|
|
|
+ height: 100%;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .txtOne .con>h3 {
|
|
|
|
+ margin-left: -5px;
|
|
|
|
+ font-size: 18px;
|
|
|
|
+ font-weight: 700;
|
|
|
|
+ margin-bottom: 0px;
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .txtOne .close {
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ position: absolute;
|
|
|
|
+ right: 24px;
|
|
|
|
+ top: 20px;
|
|
|
|
+ width: 20px;
|
|
|
|
+ height: 20px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .txtOne .close img {
|
|
|
|
+ width: 100%;
|
|
|
|
+ height: 100%;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /* 手机端的样式 */
|
|
|
|
+ @media screen and (max-width: 600px) {
|
|
|
|
+ .topButn {
|
|
|
|
+ width: 220px;
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ margin: 0;
|
|
|
|
+ top: 5px;
|
|
|
|
+ left: 50%;
|
|
|
|
+ transform: translateX(-50%);
|
|
|
|
+ pointer-events: auto;
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .topButn div {
|
|
|
|
+ width: 90px;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ background-color: #f2cd83;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .txtOne {
|
|
|
|
+ display: none;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ width: 100vw;
|
|
|
|
+ height: 100vh;
|
|
|
|
+ top: 0;
|
|
|
|
+ left: 0;
|
|
|
|
+ transform: translate(0, 0);
|
|
|
|
+ max-height: 100vh;
|
|
|
|
+ color: #fff;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .txtOne .con {
|
|
|
|
+ color: #fff;
|
|
|
|
+ height: calc(100vh - 100px);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
</style>
|
|
</style>
|
|
</head>
|
|
</head>
|
|
|
|
|
|
<body>
|
|
<body>
|
|
|
|
+
|
|
|
|
+ <!-- 新加的按钮 -->
|
|
|
|
+ <div class="topButn">
|
|
|
|
+ <div class="topButnOne">文物介绍</div>
|
|
|
|
+ </div>
|
|
|
|
+ <!-- 专家鉴定意见的文字 -->
|
|
|
|
+ <div class="txtOne">
|
|
|
|
+ <div class="close">
|
|
|
|
+ <img src="./img/close.png" alt="">
|
|
|
|
+ </div>
|
|
|
|
+ <p class="con"></p>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+
|
|
<div class="back" onclick="javascript:history.go(-1);">
|
|
<div class="back" onclick="javascript:history.go(-1);">
|
|
<img src="./img/back.png" alt="">
|
|
<img src="./img/back.png" alt="">
|
|
</div>
|
|
</div>
|
|
@@ -96,9 +251,11 @@
|
|
<div id="ui">
|
|
<div id="ui">
|
|
</div>
|
|
</div>
|
|
<script src="js/jquery.js"></script>
|
|
<script src="js/jquery.js"></script>
|
|
|
|
+ <script src="./txt.js"></script>
|
|
|
|
+
|
|
<script>
|
|
<script>
|
|
var number = getQueryVariable("m");
|
|
var number = getQueryVariable("m");
|
|
- if(spinInfo) window.autoRotate = true;
|
|
|
|
|
|
+ if (spinInfo) window.autoRotate = true;
|
|
fdage.embed('4dage/' + number + '.4dage', {
|
|
fdage.embed('4dage/' + number + '.4dage', {
|
|
width: 800,
|
|
width: 800,
|
|
height: 600,
|
|
height: 600,
|
|
@@ -107,6 +264,36 @@
|
|
pagePreset: false
|
|
pagePreset: false
|
|
});
|
|
});
|
|
$('.outerImg img').attr('src', `./images/${number}.jpg`)
|
|
$('.outerImg img').attr('src', `./images/${number}.jpg`)
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ // 获取文字介绍
|
|
|
|
+ if (txtShow) {
|
|
|
|
+ const btnDom = document.querySelector('.topButn')
|
|
|
|
+ btnDom.style.opacity = 1
|
|
|
|
+ // btnDom.style.pointerEvents = 'auto'
|
|
|
|
+ const txtDom = document.querySelector('.txtOne')
|
|
|
|
+ txtDom.style.opacity = 1
|
|
|
|
+ txtDom.style.pointerEvents = 'auto'
|
|
|
|
+
|
|
|
|
+ const txtButton = document.querySelector('.topButnOne')
|
|
|
|
+ // 获取文本
|
|
|
|
+ const txtInfo = txtObj[number] || '(空)'
|
|
|
|
+ $('.txtOne .con').html(txtInfo)
|
|
|
|
+ // 点击关闭
|
|
|
|
+ $('.txtOne .close').click(() => {
|
|
|
|
+ $('.txtOne').hide()
|
|
|
|
+ btnDom.style.pointerEvents = 'auto'
|
|
|
|
+ txtButton.style.backgroundColor = '#f2cd83'
|
|
|
|
+ })
|
|
|
|
+ $('.topButnOne').click(() => {
|
|
|
|
+ $('.txtOne').show()
|
|
|
|
+ btnDom.style.pointerEvents = 'none'
|
|
|
|
+
|
|
|
|
+ txtButton.style.backgroundColor = '#ccc'
|
|
|
|
+
|
|
|
|
+ })
|
|
|
|
+
|
|
|
|
+ }
|
|
</script>
|
|
</script>
|
|
</body>
|
|
</body>
|
|
|
|
|