摘要:
$(document).ready(function() { $('#top').click(function() { $(document).scrollTo(0,500); }}); 阅读全文
摘要:
$(document).ready(function() { $(document).bind("contextmenu",function(e) { alert("No right-clicking!");return false; });}); 阅读全文
摘要:
transform的含义是:改变,使…变形,转换在CSS3中transform主要包括以下几种:旋转rotate、扭曲skew、缩放scale 、移动translate、矩阵变形matrix。skewX(),skewY() // 例如:30degcc的属性包括:rotate() / skew... 阅读全文
摘要:
Mozilla(Firefox,Flock等浏览器) WebKit(Safari、Chrome等浏览器) Opera(Opera浏览器) Trident(IE浏览器)。//Mozilla内核浏览器:firefox3.5+ -moz-transform-origin: x y;//Webkit内... 阅读全文
摘要:
JQuery代码如下:$(document).ready(function() { $(window).scroll(function() { if ($(document).scrollTop()= $(document).height() - $(window).height()... 阅读全文
摘要:
通常我们可以用CSS中伪类和js中的鼠标事件来定义。动态伪类起作用的元素描述:link只有链接未访问的链接:visited只有链接访问过的链接:hover所有元素鼠标经过元素:active所有元素鼠标点击元素:focus所有可被选中的元素元素被选中 阅读全文
摘要:
Firefox4需要前缀-moz-。Chrome和Safari需要前缀-webkit-。Opera需要前缀-o-。 阅读全文