Intense Images―Javascript库在全屏查看图像

所属分类:媒体-图片展示

 33375  336  查看评论 (0)
分享到微信朋友圈
X
 Intense Images―Javascript库在全屏查看图像 ie兼容10

一个独立的javascript库全屏查看完整图片。使用触摸/鼠标位置的平移。这是一个演示!

HTML

<img src="./img/awesome-source.jpg" />
<!-- OR -->
<div class="anything" data-image="./img/awesome-source.jpg" />


你也可以通过标题、subcaptions,将出现在观众的右下方。要做到这一点,您可以使用data-title和data-caption属性。

<img src="./img/awesome-source.jpg" data-title="My beach adventure" data-caption="Thanks Sam, for the great picture"/>


JS

<img src="./img/awesome-source.jpg" />
<script>
window.onload = function() {
    // Intensify all images on the page.
    var element = document.querySelector( 'img' );
    Intense( element );
}
</script>


或做多一次,一个类名

<img src="./img/awesome-source.jpg" class="intense" />
<img src="./img/awesome-source.jpg" class="intense" />
<script>
window.onload = function() {
    // Intensify all images with the 'intense' classname.
    var elements = document.querySelectorAll( '.intense' );
    Intense( elements );
}
</script>


CSS

如果你想使用自己的指针图标,你可以在演示文件夹替换,或修改这里的CSS代码。

.your-image-class {
    cursor: url('./you-image-directory/plus_cursor.png') 25 25, auto;
}
相关插件-图片展示

jQuery图片放大、缩小、旋转

jQuery图片旋转插件jQuery.artZoom修改版
  图片展示
 51911  308

仿qq空间图片展示效果

使用方法简单详细,类似于qq空间的图片展示效果
  图片展示
 47913  475

纯css3放大镜

通过css3样式实现放大镜的效果
  图片展示
 43594  379

jQuery加vue 3D盒子旋转展示

3D旋转盒子,全景展示,可选择图片,设置宽高
  图片展示
 34956  365

讨论这个项目(0)回答他人问题或分享插件使用方法奖励jQ币 评论用户自律公约

😃
  • 😀
  • 😉
  • 😥
  • 😵
  • 😫
  • 😘
  • 😡
  • 👍
  • 🌹
  • 👏
  • 🍺
  • 🍉
  • 🌙
  • 💖
  • 💔
😃
  • 😀
  • 😉
  • 😥
  • 😵
  • 😫
  • 😘
  • 😡
  • 👍
  • 🌹
  • 👏
  • 🍺
  • 🍉
  • 🌙
  • 💖
  • 💔
取消回复