JavaScript 静态图像在刷新时旋转

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript 静态图像在刷新时旋转相关的知识,希望对你有一定的参考价值。

<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

var currentdate = 0
var core = 0

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

image = new StringArray(8)
image[0] = 'images/header/PA021184.JPG'
image[1] = 'images/header/PA021188.JPG'
image[2] = 'images/header/PA021195.JPG'
image[3] = 'images/header/PA021199.JPG'
image[4] = 'images/header/PA021207.JPG'
image[5] = 'images/header/PA021224.JPG'
image[6] = 'images/header/PA021226.JPG'
image[7] = 'images/header/PA021234.JPG'


var ran = 60/image.length

function ranimage() {
  currentdate = new Date()
  core = currentdate.getSeconds()
  core = Math.floor(core/ran)
    return(image[core])
}

  document.write("<img src='" +ranimage()+ "'>")  

//-->

</script>
<!-- 		<img class="frontimg" src=" +ranimage()+ " width="700" height="260"  /> -->

以上是关于JavaScript 静态图像在刷新时旋转的主要内容,如果未能解决你的问题,请参考以下文章

拉动刷新时旋转图像

页面刷新时旋转图像

javascript:刷新时选择的随机图像

为旋转横幅添加下一个和上一个按钮

在Javascript中旋转多个图像

如何使图像围绕静态徽标旋转?