9

を使用してhtmlでフレームを作成しました

<frame></frame>

タグ。マウスがフレームに入ったときにマウス ポインターを変更する方法はありますか。

4

5 に答える 5

12

あなたはここで見つけるかもしれません。

これはカーソルのcssです。

次のことを試してください。

<frame style="cursor:auto"></frame>

代わりにauto、次のいずれかを使用できます。

auto    Default. The browser sets a cursor
crosshair   The cursor render as a crosshair
default The default cursor
e-resize    The cursor indicates that an edge of a box is to be moved right (east)
help    The cursor indicates that help is available
move    The cursor indicates something that should be moved
n-resize    The cursor indicates that an edge of a box is to be moved up (north)
ne-resize   The cursor indicates that an edge of a box is to be moved up and right (north/east)
nw-resize   The cursor indicates that an edge of a box is to be moved up and left (north/west)
pointer The cursor render as a pointer
progress    The cursor indicates that the program is busy (in progress)
s-resize    The cursor indicates that an edge of a box is to be moved down (south)
se-resize   The cursor indicates that an edge of a box is to be moved down and right (south/east)
sw-resize   The cursor indicates that an edge of a box is to be moved down and left (south/west)
text    The cursor indicates text
w-resize    The cursor indicates that an edge of a box is to be moved left (west)
wait    The cursor indicates that the program is busy
于 2013-02-11T07:50:08.490 に答える
7

カーソルCSSプロパティを使用する

<style>
.mousePointer
{
    cursor: pointer;
}
</style>

<frame class="mousePointer"></frame>
于 2013-02-11T07:50:21.130 に答える
5

cssカーソルプロパティがあります:http ://www.w3schools.com/cssref/pr_class_cursor.asp次の こともできます。cursor:url(/mousePointer.cur)

于 2013-02-11T07:50:54.427 に答える
4

CSSの使用:

.myClass { cursor: pointer; }
#myId { cursor: pointer; }

またはエントリ要素:

frame { cursor: pointer; }
p { cursor: pointer; }

また、Inline-CSSを試すこともできます。

またはこのようなもの:

<div id="clickMe" onclick="alert('I\'m clicked!'); return false;" style="cursor: pointer;">I'm a Fake-Link!</a>
于 2013-02-11T07:49:58.453 に答える
2

次のようなことができます: -
HTML

  <iframe class="pointer"></iframe>

CSS

   .pointer
          {
            cursor: pointer;
          }

カーソルを変更するその他のオプションは次のとおりです。

 auto
 crosshair
 default
 e-resize
 help
 move
 n-resize
 ne-resize
 nw-resize
 pointer
 progress
 s-resize
 se-resize
 sw-resize
 text
 w-resize
 wait
于 2013-06-08T07:47:00.367 に答える