opacity_不透明度 cursor_鼠标形状

1.不透明

opacity:0.5; (不透明度为50%)
     filter:alpha(opacity=50);(为了兼容IE)

2.鼠标形状

cursor 属性规定要显示的光标的类型(形状)。

一般有如下几种:

Auto

Crosshair

Default

Pointer

Move(重要)

e-resize

ne-resize

nw-resize

n-resize

se-resize

sw-resize

s-resize

w-resize

text

wait

help

时间: 2024-11-08 20:55:21

opacity_不透明度 cursor_鼠标形状的相关文章

CSS声明 列表样式 显示方式 鼠标形状

列表样式 list-style-type list-style-image 显示方式: 默认显示方式 改变显示方式 鼠标形状: 如何改变属性形状 cursor属性 list-style-type: 该属性控制列表中列表项标志的样式 无序列表 有序列表 list-style-image 该属性使用图像替换列表项的标志 取值为:URL(),制定图像有序或无序列表项的标志 列表样式代码: <!doctype html> <html> <head> <title>列

CSS 鼠标形状

css样式中鼠标形状的改变是通过cursor属性来决定的,如下所示: cursor: auto.hand.pointer.crosshair.default.text.vertical-text.wait.move.help.row-resize.col-resize.all-scroll.progress.not-allowed.no-drop. 解释说明hand:手型,通常用户将光标移到超链接上时那样pointer:和hand一样,它的兼容性更好.crosshair:十字型default:

鼠标形状css样式

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>鼠标形状css样式</title> </head> <body> <div><a href="javascript:void(0);" title="cursor:hand"

Qt--改变鼠标形状

改变鼠标形状,在绘制坐标系的时候有用到,特此记下: 1 this->setMouseTracking(true); //设置为不按下鼠标键触发moveEvent 2 void mouseMoveEvent(QMouseEvent* event) 3 { 4 QPoint mousepos = event()->pos(); 5 6 //在坐标(0 ~ width,0 ~ height)范围内改变鼠标形状 7 if(mousepos.rx() > 0 8 && mousep

DIV css中cursor属性详解-鼠标移到图片变换鼠标形状 (转)

css中cursor属性详解-鼠标移到图片变换鼠标形状 语法: cursor : auto | all-scroll | col-resize| crosshair | default | hand | move | help | no-drop | not-allowed | pointer | progress | row-resize | text | vertical-text | wait | *-resize | url ( url )  取值: auto  :   默认值.浏览器根

改变html中鼠标形状

要修改的属性是: style=”cursor:default” 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 pointer:是手型. crosshair:是十字型,就是小乌龟首页所用的样式. text:是平时鼠标移动到文本上的样式. wait:是等待的效果. default:是默认的那种效果. help:是带问号的鼠标样式. e-resize:是向右的箭头. ne-resize:是向右上方的箭头. n-resize:是向上的箭头. nw-resize:是向

如何改变链接的鼠标形状

只需在链接上加上这一代码就行的了或者跟上面的用CSS写也行 style="cursor:hand" style="cursor:crosshair" style="cursor:text" style="cursor:wait" style="cursor:move" style="cursor:help" style="cursor:e-resize" style=

CSS控制鼠标形状

巧合要用到鼠标样式效果,就顺便整理了下十五种CSS鼠标样式.CSS鼠标样式语法如下:任意标签中插入 style="cursor:*"例 子:<span style="cursor:*">文本或其它页面元素</span> <a href="#" style="cursor:*">文本或其它页面元素</a> 注意把 * 换成如下15个效果的一种: 下面是对这15种效果的解释.移动鼠标

点击帮助按钮改变鼠标形状

$(function () { $('html *:not(#btn_helper_)').click(function (e) { hepler = false; $("html").css({ cursor: "url(''),auto" }); //e.stopPropagation(); }); $("#btn_helper_").click(function (e) { $("html").css({ cursor: