oracle下convert a database

YoucanalsouseRMANtotransportanentiredatabasetoadifferentplatformsolongasthetwoplatformshavethesameendianformat具体过程如下:一convert前提条件1检查两平

You can also use RMAN to transport an entire database to a different platform so long as the two platforms have the same endian format

具体过程如下:

一 convert前提条件

1 检查两平台是否有相同的字节顺序

linux 平台如下:

SQL> select platform_name,endian_format from v$transportable_platform where platform_id=(select platform_id from v$database);

PLATFORM_NAMEENDIAN_FORMAT

————————————————– ————–

Linux x86 64-bitLittle

windows 平台如下:

SQL> select platform_name,endian_format from v$transportable_platform where plat

form_id=(select platform_id from v$database);

PLATFORM_NAMEENDIAN_FORMAT

————————————————– ————–

Microsoft Windows x86 64-bitLittle

2 检查数据库是否支持整体convert (需要在sqlplus下开启serveroutput)

由于本次convert a database是从‘Linux x86 64-bit’ —>‘Microsoft Windows x86 64-bit’所以有如下:

SQL> set serveroutput on

SQL> DECLARE

2 db_ready BOOLEAN;

3 BEGIN

4 db_ready :=

5 DBMS_TDB.CHECK_DB(‘Microsoft Windows x86 64-bit’,DBMS_TDB.SKIP_NONE);

6 END;

7 /

注意SKIP_NONE (or 0), 表示检测所有表空间

PL/SQL procedure successfully completed.

检查是否出现警告信息,,如果没有出现警告信息则表示可以转换整个数据库。

如下则表示不能转换整个数据库

SQL> DECLARE

2 db_ready BOOLEAN;

3 BEGIN

4 db_ready :=

5 DBMS_TDB.CHECK_DB(‘HP-UX (64-bit)’,DBMS_TDB.SKIP_READONLY);

6 END;

7 /

The specified target platform name ‘HP-UX (64-bit)’ is invalid or the target

platform is not transportable.

PL/SQL procedure successfully completed.

3 确定两平台有相同的数据库版本

linux 平台如下:

SQL> select * from v$version;

BANNER

——————————————————————————–

Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 – 64bit Production

PL/SQL Release 11.2.0.2.0 – Production

CORE 11.2.0.2.0 Production

TNS for Linux: Version 11.2.0.2.0 – Production

NLSRTL Version 11.2.0.2.0 – Production

windows平台如下:

SQL> select * from v$version;

BANNER

——————————————————————————

Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 – 64bit Production

PL/SQL Release 11.2.0.2.0 – Production

CORE 11.2.0.2.0 Production

TNS for 64-bit Windows: Version 11.2.0.2.0 – Production

NLSRTL Version 11.2.0.2.0 – Production

二 操作步骤

1 以sysdba连接数据库

[oracle@source ~]$ sqlplus / as sysdba

SQL*Plus: Release 11.2.0.2.0 Production on Fri Nov 15 19:28:45 2013

Copyright (c) 1982, 2010, Oracle. All rights reserved.

Connected to an idle instance.

2 以只读方式打开数据库

SQL> startup mount

ORACLE instance started.

Total System Global Area 1252663296 bytes

Fixed Size2226072 bytes

Variable Size 973080680 bytes

Database Buffers 268435456 bytes

Redo Buffers 8921088 bytes

Database mounted.

SQL> alter database open read only;

Database altered.

SQL> select open_mode from v$database;

OPEN_MODE

——————–

READ ONLY

3 用rman连接到源数据库作为target

QL> host;

[oracle@source ~]$ rman target /

Recovery Manager: Release 11.2.0.2.0 – Production on Fri Nov 15 19:46:16 2013

Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.

connected to target database: CRM (DBID=3599153036)

4 转换数据库

RMAN> CONVERT DATABASE NEW DATABASE ‘newdb’

TRANSPORT SCRIPT ‘/backup/convertdb/transportscript.sql’

TO PLATFORM ‘Microsoft Windows x86 64-bit’

DB_FILE_NAME_CONVERT ‘/oracle/CRM/’ ‘/backup/convertdb’;

过程如下:

RMAN> CONVERT DATABASE NEW DATABASE ‘newdb’

2> TRANSPORT SCRIPT ‘/backup/convertdb/transportscript.sql’

3> TO PLATFORM ‘Microsoft Windows x86 64-bit’

4> DB_FILE_NAME_CONVERT ‘/oracle/CRM/’ ‘/backup/convertdb’;

Starting conversion at source at 15-NOV-13

using target database control file instead of recovery catalog

allocated channel: ORA_DISK_1

channel ORA_DISK_1: SID=131 device type=DISK

Directory SYS.ORACLE_OCM_CONFIG_DIR found in the database

Directory SYS.DATA_PUMP_DIR found in the database

Directory SYS.XMLDIR found in the database

Directory SYS.DUMP found in the database

Directory SYS.TSPITR_DIROBJ_DPDIR found in the database

User SYS with SYSDBA and SYSOPER privilege found in password file

channel ORA_DISK_1: starting datafile conversion

input datafile file number=00004 name=/oracle/CRM/users01.dbf

converted datafile=/backup/convertdbusers01.dbf

channel ORA_DISK_1: datafile conversion complete, elapsed time: 00:03:07

channel ORA_DISK_1: starting datafile conversion

input datafile file number=00001 name=/oracle/CRM/system01.dbf

converted datafile=/backup/convertdbsystem01.dbf

channel ORA_DISK_1: datafile conversion complete, elapsed time: 00:01:05

channel ORA_DISK_1: starting datafile conversion

input datafile file number=00002 name=/oracle/CRM/sysaux01.dbf

converted datafile=/backup/convertdbsysaux01.dbf

channel ORA_DISK_1: datafile conversion complete, elapsed time: 00:00:55

channel ORA_DISK_1: starting datafile conversion

input datafile file number=00005 name=/oracle/CRM/pos.dbf

converted datafile=/backup/convertdbpos.dbf

channel ORA_DISK_1: datafile conversion complete, elapsed time: 00:00:55

channel ORA_DISK_1: starting datafile conversion

input datafile file number=00006 name=/oracle/CRM/erp.dbf

converted datafile=/backup/convertdberp.dbf

channel ORA_DISK_1: datafile conversion complete, elapsed time: 00:00:15

channel ORA_DISK_1: starting datafile conversion

input datafile file number=00008 name=/oracle/CRM/undotbs03.dbf

converted datafile=/backup/convertdbundotbs03.dbf

channel ORA_DISK_1: datafile conversion complete, elapsed time: 00:00:15

channel ORA_DISK_1: starting datafile conversion

input datafile file number=00009 name=/oracle/CRM/jxc.dbf

converted datafile=/backup/convertdbjxc.dbf

channel ORA_DISK_1: datafile conversion complete, elapsed time: 00:01:15

channel ORA_DISK_1: starting datafile conversion

input datafile file number=00010 name=/oracle/CRM/crm.dbf

converted datafile=/backup/convertdbcrm.dbf

channel ORA_DISK_1: datafile conversion complete, elapsed time: 00:00:07

channel ORA_DISK_1: starting datafile conversion

input datafile file number=00003 name=/oracle/CRM/zx.dbf

converted datafile=/backup/convertdbzx.dbf

channel ORA_DISK_1: datafile conversion complete, elapsed time: 00:00:03

channel ORA_DISK_1: starting datafile conversion

input datafile file number=00007 name=/oracle/CRM/user01.dbf

converted datafile=/backup/convertdbuser01.dbf

channel ORA_DISK_1: datafile conversion complete, elapsed time: 00:00:01

Edit init.ora file /oracle/app/db1/dbs/init_00op1uot_1_0.ora. This PFILE will be used to create the database on the target platform

Run SQL script /backup/convertdb/transportscript.sql on the target platform to create database

To recompile all PL/SQL modules, run utlirp.sql and utlrp.sql on the target platform

To change the internal database identifier, use DBNEWID Utility

Finished conversion at source at 15-NOV-13

注意:红色部分为要拷贝到目标平台的文件

6 拷贝转换后的数据文件,参数文件,transportscript.sql 到目标平台

7 更改参数文件和transportscript.sql的内容

更改前参数文件内容

[oracle@source ~]$ vi /oracle/app/db1/dbs/init_00op1uot_1_0.ora

# Please change the values of the following parameters:

control_files = “/oracle/app/db1/dbs/cf_D-NEWDB_id-3599153036_01op1uot”

audit_file_dest = “/oracle/app/db1/dbs/adump”

db_name= “NEWDB”

# Please review the values of the following parameters:

Seede AI Seede AI

AI 驱动的设计工具

Seede AI 586 查看详情 Seede AI

# __oracle_base = “/oracle/app”

__shared_pool_size = 402653184

__large_pool_size = 16777216

__java_pool_size = 16777216

__streams_pool_size = 33554432

__sga_target = 754974720

__db_cache_size = 268435456

__shared_io_pool_size = 0

remote_login_passwordfile= “EXCLUSIVE”

db_domain = “”

dispatchers = “(PROTOCOL=TCP) (SERVICE=CRMXDB)”

__pga_aggregate_target = 503316480

# The values of the following parameters are from source database:

processes = 150

memory_target = 1258291200

db_block_size = 8192

db_cache_size = 218103808

compatible = “11.2.0.0.0”

# log_archive_dest_1 = “LOCATION=/oracle/archive”

log_archive_dest_2 = “”

log_archive_format = “%t_%s_%r.dbf”

undo_tablespace = “UNDOTBS3”

undo_retention = 1200

audit_trail = “OS”

open_cursors = 300

# diagnostic_dest = “/oracle/app”

更改后参数文件initCRM.ora内容如下:

# Please change the values of the following parameters:

control_files = “e:crmcontrol01.ctl”

audit_file_dest = “c:appadminCRMadump”

db_name= “CRM”

# Please review the values of the following parameters:

# __oracle_base = “c:app”

__shared_pool_size = 402653184

__large_pool_size = 1677721

__java_pool_size = 16777216

__streams_pool_size = 33554432

__sga_target = 754974720

__db_cache_size = 268435456

__shared_io_pool_size = 0

remote_login_passwordfile= “EXCLUSIVE”

db_domain = “”

dispatchers = “(PROTOCOL=TCP) (SERVICE=CRMXDB)”

__pga_aggregate_target = 503316480

# The values of the following parameters are from source database:

processes = 150

memory_target = 1258291200

db_block_size = 8192

db_cache_size = 218103808

compatible = “11.2.0.0.0”

# log_archive_dest_1 = “LOCATION=f:archive”

log_archive_dest_2 = “”

log_archive_format = “%t_%s_%r.dbf”

undo_tablespace = “UNDOTBS3”

undo_retention = 1200

audit_trail = “OS”

open_cursors = 300

# diagnostic_dest = “c:app”

更改前transportscript.sql的内容

[oracle@source ~]$ cat /backup/convertdb/transportscript.sql

— The following commands will create a new control file and use it

— to open the database.

— Data used by Recovery Manager will be lost.

— The contents of online logs will be lost and all backups will

— be invalidated. Use this only if online logs are damaged.

— After mounting the created controlfile, the following SQL

— statement will place the database in the appropriate

— protection mode:

— ALTER DATABASE SET STANDBY DATABASE TO MAXIMIZE PERFORMANCE

STARTUP NOMOUNT PFILE=’/oracle/app/db1/dbs/init_00op1uot_1_0.ora’

CREATE CONTROLFILE REUSE SET DATABASE “NEWDB” RESETLOGS ARCHIVELOG

MAXLOGFILES 16

MAXLOGMEMBERS 3

MAXDATAFILES 100

MAXINSTANCES 8

MAXLOGHISTORY 292

LOGFILE

GROUP 1 ‘/oracle/app/db1/dbs/arch_D-NEWDB_id-3599153036_S-33_T-1_A-823810820_03op1uot’ SIZE 200M BLOCKSIZE 512,

GROUP 2 ‘/oracle/app/db1/dbs/arch_D-NEWDB_id-3599153036_S-34_T-1_A-823810820_04op1uot’ SIZE 200M BLOCKSIZE 512,

GROUP 3 ‘/oracle/app/db1/dbs/arch_D-NEWDB_id-3599153036_S-35_T-1_A-823810820_05op1uot’ SIZE 200M BLOCKSIZE 512,

GROUP 4 ‘/oracle/app/db1/dbs/arch_D-NEWDB_id-3599153036_S-32_T-1_A-823810820_06op1uot’ SIZE 200M BLOCKSIZE 512

DATAFILE

‘/backup/convertdbsystem01.dbf’,

‘/backup/convertdbsysaux01.dbf’,

‘/backup/convertdbzx.dbf’,

‘/backup/convertdbusers01.dbf’,

‘/backup/convertdbpos.dbf’,

‘/backup/convertdberp.dbf’,

‘/backup/convertdbuser01.dbf’,

‘/backup/convertdbundotbs03.dbf’,

‘/backup/convertdbjxc.dbf’,

‘/backup/convertdbcrm.dbf’

CHARACTER SET ZHS16GBK

;

— Database can now be opened zeroing the online logs.

ALTER DATABASE OPEN RESETLOGS;

— Commands to add tempfiles to temporary tablespaces.

— Online tempfiles have complete space information.

— Other tempfiles may require adjustment.

ALTER TABLESPACE TEMP ADD TEMPFILE ‘/oracle/app/db1/dbs/data_D-NEWDB_I-3599153036_TS-TEMP_FNO-1_07op1uot’

SIZE 20971520 AUTOEXTEND OFF;

— End of tempfile additions.

set echo off

prompt ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

prompt * Your database has been created successfully!

prompt * There are many things to think about for the new database. Here

prompt * is a checklist to help you stay on track:

prompt * 1. You may want to redefine the location of the directory objects.

prompt * 2. You may want to change the internal database identifier (DBID)

prompt * or the global database name for this database. Use the

prompt * NEWDBID Utility (nid).

prompt ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

SHUTDOWN IMMEDIATE

STARTUP UPGRADE PFILE=’/oracle/app/db1/dbs/init_00op1uot_1_0.ora’

@@ ?/rdbms/admin/utlirp.sql

SHUTDOWN IMMEDIATE

STARTUP PFILE=’/oracle/app/db1/dbs/init_00op1uot_1_0.ora’

— The following step will recompile all PL/SQL modules.

— It may take serveral hours to complete.

@@ ?/rdbms/admin/utlrp.sql

set feedback 6;

更改后transportscript.sql的内容

— The following commands will create a new control file and use it

— to open the database.

— Data used by Recovery Manager will be lost.

— The contents of online logs will be lost and all backups will

— be invalidated. Use this only if online logs are damaged.

— After mounting the created controlfile, the following SQL

— statement will place the database in the appropriate

— protection mode:

— ALTER DATABASE SET STANDBY DATABASE TO MAXIMIZE PERFORMANCE

STARTUP NOMOUNT PFILE=’e:crminitCRM.ora’

CREATE CONTROLFILE REUSE SET DATABASE “CRM” RESETLOGS ARCHIVELOG

MAXLOGFILES 16

MAXLOGMEMBERS 3

MAXDATAFILES 100

MAXINSTANCES 8

MAXLOGHISTORY 292

LOGFILE

GROUP 1 ‘e:crmredo01.log’ SIZE 200M BLOCKSIZE 512,

GROUP 2 ‘e:crmredo02.log’ SIZE 200M BLOCKSIZE 512,

GROUP 3 ‘e:crmredo03.log’ SIZE 200M BLOCKSIZE 512,

GROUP 4 ‘e:crmredo04.log’ SIZE 200M BLOCKSIZE 512

DATAFILE

‘e:crmsystem01.dbf’,

‘e:crmsysaux01.dbf’,

‘e:crmzx.dbf’,

‘e:crmusers01.dbf’,

‘e:crmpos.dbf’,

‘e:crmerp.dbf’,

‘e:crmuser01.dbf’,

‘e:crmundotbs03.dbf’,

‘e:crmjxc.dbf’,

‘e:crmcrm.dbf’

CHARACTER SET ZHS16GBK

;

— Database can now be opened zeroing the online logs.

ALTER DATABASE OPEN RESETLOGS;

— Commands to add tempfiles to temporary tablespaces.

— Online tempfiles have complete space information.

— Other tempfiles may require adjustment.

ALTER TABLESPACE TEMP ADD TEMPFILE ‘e:crmtemp01.dbf’

SIZE 20971520 AUTOEXTEND OFF;

— End of tempfile additions.

set echo off

prompt ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

prompt * Your database has been created successfully!

prompt * There are many things to think about for the new database. Here

prompt * is a checklist to help you stay on track:

prompt * 1. You may want to redefine the location of the directory objects.

prompt * 2. You may want to change the internal database identifier (DBID)

prompt * or the global database name for this database. Use the

prompt * NEWDBID Utility (nid).

prompt ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

SHUTDOWN IMMEDIATE

STARTUP UPGRADE PFILE=’e:crminitCRM.ora’

@@ ?/rdbms/admin/utlirp.sql

SHUTDOWN IMMEDIATE

STARTUP PFILE=’e:crminitCRM.ora’

— The following step will recompile all PL/SQL modules.

— It may take serveral hours to complete.

@@ ?/rdbms/admin/utlrp.sql

set feedback 6;

8 在目标平台上执行transportscript.sql

创建一个oracle服务

C:>oradim -new -sid CRM -startmode manual

实例已创建。

执行transportscript.sql

C:UsersAdministrator>set oracle_sid=CRM

C:UsersAdministrator>sqlplus / as sysdba

SQL*Plus: Release 11.2.0.2.0 Production on 星期五 11月 15 14:38:03 2013

Copyright (c) 1982, 2010, Oracle. All rights reserved.

已连接到空闲例程。

SQL> @e:crmtransportscript.sql

ORACLE 例程已经启动。

Total System Global Area 1252663296 bytes

Fixed Size2252768 bytes

Variable Size 973078560 bytes

Database Buffers 268435456 bytes

Redo Buffers 8896512 bytes

控制文件已创建。

………………..省略

………………..省略

………………..省略

………………..省略

SQL> DROP function local_enquote_name;

函数已删除。

SQL>

SQL> Rem =====================================================================

SQL> Rem Run component validation procedure

SQL> Rem =====================================================================

SQL>

SQL> EXECUTE dbms_registry_sys.validate_components;

PL/SQL 过程已成功完成。

SQL> SET serveroutput off

SQL>

SQL>

SQL> Rem =======================================================================

====

SQL> Rem END utlrp.sql

SQL> Rem =======================================================================

====

SQL> set feedback 6;

…………………………………完…………………………………

总结:数据库迁移时,如果源平台和目标平台字节序相同的话,可以考虑用此方法迁移整个库

本文出自 “myblog” 博客,请务必保留此出处

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/1045342.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2025年12月2日 06:56:47
下一篇 2025年12月2日 06:57:18

相关推荐

  • Uniapp 中如何不拉伸不裁剪地展示图片?

    灵活展示图片:如何不拉伸不裁剪 在界面设计中,常常需要以原尺寸展示用户上传的图片。本文将介绍一种在 uniapp 框架中实现该功能的简单方法。 对于不同尺寸的图片,可以采用以下处理方式: 极端宽高比:撑满屏幕宽度或高度,再等比缩放居中。非极端宽高比:居中显示,若能撑满则撑满。 然而,如果需要不拉伸不…

    2025年12月24日
    400
  • 如何让小说网站控制台显示乱码,同时网页内容正常显示?

    如何在不影响用户界面的情况下实现控制台乱码? 当在小说网站上下载小说时,大家可能会遇到一个问题:网站上的文本在网页内正常显示,但是在控制台中却是乱码。如何实现此类操作,从而在不影响用户界面(UI)的情况下保持控制台乱码呢? 答案在于使用自定义字体。网站可以通过在服务器端配置自定义字体,并通过在客户端…

    2025年12月24日
    800
  • 如何在地图上轻松创建气泡信息框?

    地图上气泡信息框的巧妙生成 地图上气泡信息框是一种常用的交互功能,它简便易用,能够为用户提供额外信息。本文将探讨如何借助地图库的功能轻松创建这一功能。 利用地图库的原生功能 大多数地图库,如高德地图,都提供了现成的信息窗体和右键菜单功能。这些功能可以通过以下途径实现: 高德地图 JS API 参考文…

    2025年12月24日
    400
  • 如何使用 scroll-behavior 属性实现元素scrollLeft变化时的平滑动画?

    如何实现元素scrollleft变化时的平滑动画效果? 在许多网页应用中,滚动容器的水平滚动条(scrollleft)需要频繁使用。为了让滚动动作更加自然,你希望给scrollleft的变化添加动画效果。 解决方案:scroll-behavior 属性 要实现scrollleft变化时的平滑动画效果…

    2025年12月24日
    000
  • 如何为滚动元素添加平滑过渡,使滚动条滑动时更自然流畅?

    给滚动元素平滑过渡 如何在滚动条属性(scrollleft)发生改变时为元素添加平滑的过渡效果? 解决方案:scroll-behavior 属性 为滚动容器设置 scroll-behavior 属性可以实现平滑滚动。 html 代码: click the button to slide right!…

    2025年12月24日
    500
  • 如何选择元素个数不固定的指定类名子元素?

    灵活选择元素个数不固定的指定类名子元素 在网页布局中,有时需要选择特定类名的子元素,但这些元素的数量并不固定。例如,下面这段 html 代码中,activebar 和 item 元素的数量均不固定: *n *n 如果需要选择第一个 item元素,可以使用 css 选择器 :nth-child()。该…

    2025年12月24日
    200
  • 使用 SVG 如何实现自定义宽度、间距和半径的虚线边框?

    使用 svg 实现自定义虚线边框 如何实现一个具有自定义宽度、间距和半径的虚线边框是一个常见的前端开发问题。传统的解决方案通常涉及使用 border-image 引入切片图片,但是这种方法存在引入外部资源、性能低下的缺点。 为了避免上述问题,可以使用 svg(可缩放矢量图形)来创建纯代码实现。一种方…

    2025年12月24日
    100
  • 如何让“元素跟随文本高度,而不是撑高父容器?

    如何让 元素跟随文本高度,而不是撑高父容器 在页面布局中,经常遇到父容器高度被子元素撑开的问题。在图例所示的案例中,父容器被较高的图片撑开,而文本的高度没有被考虑。本问答将提供纯css解决方案,让图片跟随文本高度,确保父容器的高度不会被图片影响。 解决方法 为了解决这个问题,需要将图片从文档流中脱离…

    2025年12月24日
    000
  • 为什么 CSS mask 属性未请求指定图片?

    解决 css mask 属性未请求图片的问题 在使用 css mask 属性时,指定了图片地址,但网络面板显示未请求获取该图片,这可能是由于浏览器兼容性问题造成的。 问题 如下代码所示: 立即学习“前端免费学习笔记(深入)”; icon [data-icon=”cloud”] { –icon-cl…

    2025年12月24日
    200
  • 如何利用 CSS 选中激活标签并影响相邻元素的样式?

    如何利用 css 选中激活标签并影响相邻元素? 为了实现激活标签影响相邻元素的样式需求,可以通过 :has 选择器来实现。以下是如何具体操作: 对于激活标签相邻后的元素,可以在 css 中使用以下代码进行设置: li:has(+li.active) { border-radius: 0 0 10px…

    2025年12月24日
    100
  • 如何模拟Windows 10 设置界面中的鼠标悬浮放大效果?

    win10设置界面的鼠标移动显示周边的样式(探照灯效果)的实现方式 在windows设置界面的鼠标悬浮效果中,光标周围会显示一个放大区域。在前端开发中,可以通过多种方式实现类似的效果。 使用css 使用css的transform和box-shadow属性。通过将transform: scale(1.…

    2025年12月24日
    200
  • 为什么我的 Safari 自定义样式表在百度页面上失效了?

    为什么在 Safari 中自定义样式表未能正常工作? 在 Safari 的偏好设置中设置自定义样式表后,您对其进行测试却发现效果不同。在您自己的网页中,样式有效,而在百度页面中却失效。 造成这种情况的原因是,第一个访问的项目使用了文件协议,可以访问本地目录中的图片文件。而第二个访问的百度使用了 ht…

    2025年12月24日
    000
  • 如何用前端实现 Windows 10 设置界面的鼠标移动探照灯效果?

    如何在前端实现 Windows 10 设置界面中的鼠标移动探照灯效果 想要在前端开发中实现 Windows 10 设置界面中类似的鼠标移动探照灯效果,可以通过以下途径: CSS 解决方案 DEMO 1: Windows 10 网格悬停效果:https://codepen.io/tr4553r7/pe…

    2025年12月24日
    000
  • 使用CSS mask属性指定图片URL时,为什么浏览器无法加载图片?

    css mask属性未能加载图片的解决方法 使用css mask属性指定图片url时,如示例中所示: mask: url(“https://api.iconify.design/mdi:apple-icloud.svg”) center / contain no-repeat; 但是,在网络面板中却…

    2025年12月24日
    000
  • 如何用CSS Paint API为网页元素添加时尚的斑马线边框?

    为元素添加时尚的斑马线边框 在网页设计中,有时我们需要添加时尚的边框来提升元素的视觉效果。其中,斑马线边框是一种既醒目又别致的设计元素。 实现斜向斑马线边框 要实现斜向斑马线间隔圆环,我们可以使用css paint api。该api提供了强大的功能,可以让我们在元素上绘制复杂的图形。 立即学习“前端…

    2025年12月24日
    000
  • 图片如何不撑高父容器?

    如何让图片不撑高父容器? 当父容器包含不同高度的子元素时,父容器的高度通常会被最高元素撑开。如果你希望父容器的高度由文本内容撑开,避免图片对其产生影响,可以通过以下 css 解决方法: 绝对定位元素: .child-image { position: absolute; top: 0; left: …

    2025年12月24日
    000
  • CSS 帮助

    我正在尝试将文本附加到棕色框的左侧。我不能。我不知道代码有什么问题。请帮助我。 css .hero { position: relative; bottom: 80px; display: flex; justify-content: left; align-items: start; color:…

    2025年12月24日 好文分享
    200
  • 前端代码辅助工具:如何选择最可靠的AI工具?

    前端代码辅助工具:可靠性探讨 对于前端工程师来说,在HTML、CSS和JavaScript开发中借助AI工具是司空见惯的事情。然而,并非所有工具都能提供同等的可靠性。 个性化需求 关于哪个AI工具最可靠,这个问题没有一刀切的答案。每个人的使用习惯和项目需求各不相同。以下是一些影响选择的重要因素: 立…

    2025年12月24日
    300
  • 如何用 CSS Paint API 实现倾斜的斑马线间隔圆环?

    实现斑马线边框样式:探究 css paint api 本文将探究如何使用 css paint api 实现倾斜的斑马线间隔圆环。 问题: 给定一个有多个圆圈组成的斑马线图案,如何使用 css 实现倾斜的斑马线间隔圆环? 答案: 立即学习“前端免费学习笔记(深入)”; 使用 css paint api…

    2025年12月24日
    000
  • 如何使用CSS Paint API实现倾斜斑马线间隔圆环边框?

    css实现斑马线边框样式 想定制一个带有倾斜斑马线间隔圆环的边框?现在使用css paint api,定制任何样式都轻而易举。 css paint api 这是一个新的css特性,允许开发人员创建自定义形状和图案,其中包括斑马线样式。 立即学习“前端免费学习笔记(深入)”; 实现倾斜斑马线间隔圆环 …

    2025年12月24日
    100

发表回复

登录后才能评论
关注微信