请问各位怎么利用js实现文字与背景反色?

JavaScript014

请问各位怎么利用js实现文字与背景反色?,第1张

<div id='d1' style='color:#336699font-size:40px'>

xxxx

</div>

<input type='button' onclick="test()" value='设置反色背景' />

<script>

function oppositeColor(a){

a=a.replace('#','')

var c16,c10,max16=15,b=[]

for(var i=0i<a.lengthi++){

c16=parseInt(a.charAt(i),16)//  to 16进制

c10=parseInt(max16-c16,10)// 10进制计算

b.push(c10.toString(16)) // to 16进制

}

return '#'+b.join('')

}

function test(){

var d=document.getElementById("d1")

//alert(oppositeColor(d.style.color))

d.style.background=oppositeColor(d.style.color)

}

</script>

function HTMLEncode(html) {

    var temp = document.createElement("div")

    (temp.textContent != null) ? (temp.textContent = html) : (temp.innerText = html)

    var output = temp.innerHTML

    temp = null

    return output

}

var tagText = "<p><b>123&456</b></p>"

console.log(HTMLEncode(tagText))//<p><b>123&456</b></p>

function HTMLDecode(text) { 

       var temp = document.createElement("div")

        temp.innerHTML = text 

        var output = temp.innerText || temp.textContent

        temp = null 

        return output

var  tagText = "<p><b>123&456</b></p>"

var  encodeText=HTMLEncode(tagText)

console.log(encodeText)      //<p><b>123&456</b></p>

console.log(HTMLDecode(encodeText))    //<p><b>123&456</b></p>

用PDF编辑软件来解决这个问题,比如FoxitPDFEditor这个软件是专门编辑PDF文件的,可将你需要的页码旋转后保存就行

pdf文档怎么单独旋转某一页的方法如下:

1.打开PDF编辑器,选择添加需要进行旋转操作的PDF文件,点击打开的按钮就可以选择文件了

2.找到栏目中的文档选项,点击之后选择下面的旋转页面的功能即可。

3.在弹出的窗口中选择旋转的方向、页面范围以及要应用到的页面,想要只旋转其中一页内容的话,旋转你需要旋转的那一页就好,之后点击确定就可以了。

4.这时候会看到页面已经成功旋转了,这里小编是以旋转90度为例,大家在操作的时候根据自己的需要进行选择就可以。

5.最后别忘记保存啦,不然之前的工作可就前功尽弃咯。